/* ======================== HERO ======================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 7rem 2rem 4rem;
    }
    .hero-bg-shapes {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
    }
    .hero-shape-1 {
      width: 600px; height: 600px;
      background: var(--sunshine-light);
      top: -100px; right: -100px;
      animation: float1 8s ease-in-out infinite;
    }
    .hero-shape-2 {
      width: 500px; height: 500px;
      background: var(--coral-light);
      bottom: -150px; left: -100px;
      opacity: 0.3;
      animation: float2 10s ease-in-out infinite;
    }
    .hero-shape-3 {
      width: 350px; height: 350px;
      background: var(--turquoise);
      top: 30%; left: 40%;
      opacity: 0.15;
      animation: float3 12s ease-in-out infinite;
    }
    @keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 20px); } }
    @keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -30px); } }
    @keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px, -20px); } }

    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-content { position: relative; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--sunshine), var(--coral-light));
      color: white;
      padding: 0.5rem 1.2rem;
      border-radius: 100px;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      animation: fadeIn 0.6s ease 0.2s both;
    }
    .hero h1 {
      font-family: 'Ribeye', cursive;
      font-size: clamp(3rem, 6vw, 4.8rem);
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      color: var(--text);
      animation: fadeIn 0.6s ease 0.4s both;
    }
    .hero h1 .accent-coral { color: var(--coral); }
    .hero h1 .accent-turquoise { color: var(--turquoise); }
    .hero h1 .accent-sunshine {
      color: var(--sunshine);
      position: relative;
      display: inline-block;
    }
    .hero h1 .accent-sunshine::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 8px;
      background: var(--sunshine-light);
      border-radius: 4px;
      z-index: -1;
      opacity: 0.5;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 500px;
      animation: fadeIn 0.6s ease 0.6s both;
    }
    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeIn 0.6s ease 0.8s both;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: none;
      font-family: 'DM Sans', sans-serif;
    }
    .btn svg { width: 20px; height: 20px; }
    .btn-fiesta {
      background: linear-gradient(135deg, var(--coral), var(--hot-pink));
      color: white;
      box-shadow: 0 8px 30px rgba(232, 85, 61, 0.35);
    }
    .btn-fiesta:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 40px rgba(232, 85, 61, 0.5);
    }
    .btn-fun {
      background: var(--sunshine);
      color: var(--text);
      box-shadow: 0 6px 20px rgba(255, 186, 66, 0.3);
    }
    .btn-fun:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 35px rgba(255, 186, 66, 0.45);
      background: var(--sunshine-light);
    }

    .hero-visual {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 1rem;
      animation: fadeIn 0.8s ease 0.4s both;
    }
    .hero-img-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      transition: transform 0.4s ease;
    }
    .hero-img-card:hover { transform: scale(1.03) rotate(-1deg); }
    .hero-img-card:nth-child(1) { grid-row: span 2; border-radius: 30px; }
    .hero-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-floating-badge {
      display: none !important;
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      padding: 1rem 1.5rem;
      border-radius: 100px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      z-index: 2;
      white-space: nowrap;
      animation: fadeIn 0.6s ease 1s both;
    }
    .hero-floating-badge .badge-stars {
      display: flex;
      gap: 2px;
    }
    .hero-floating-badge .badge-stars svg {
      width: 16px; height: 16px;
      fill: var(--sunshine);
    }
    .hero-floating-badge .badge-text {
      font-weight: 600;
      font-size: 1rem;
    }

    /* ======================== MARQUEE ======================== */
    .marquee-section {
      padding: 1.5rem 0;
      background: var(--coral);
      overflow: hidden;
      transform: rotate(-1deg) scale(1.02);
      margin: -10px 0;
      position: relative;
      z-index: 2;
    }
    .marquee-track {
      display: flex;
      gap: 3rem;
      animation: marquee 20s linear infinite;
      width: max-content;
    }
    .marquee-item {
      font-family: 'Ribeye', cursive;
      font-size: 1.3rem;
      font-weight: 600;
      color: white;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .marquee-dot {
      width: 8px; height: 8px;
      background: var(--sunshine);
      border-radius: 50%;
      flex-shrink: 0;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ======================== SECTION COMMONS ======================== */
    section { padding: 6rem 2rem; }
    .container { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
    .section-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--sand);
      color: var(--coral);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 1rem;
    }
    .section-chip svg {
      width: 14px; height: 14px;
      fill: var(--coral);
    }
    .section-title {
      font-family: 'Ribeye', cursive;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-desc {
      font-size: 1.1rem;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 550px;
    }

    /* ======================== ABOUT BENTO ======================== */
    .about {
      background: var(--warm-white);
      position: relative;
      overflow: hidden;
    }
    .about::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/music-tacos-coral.svg');
      background-size: 520px 520px;
      background-repeat: repeat;
      opacity: 0.1;
      pointer-events: none;
    }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto auto;
      gap: 1.2rem;
      margin-top: 3rem;
    }
    .bento-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      transition: transform 0.4s ease;
      cursor: pointer;
    }
    .bento-card:hover { transform: translateY(-5px); }
    .bento-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .bento-1 {
      grid-column: 1 / 5;
      background: var(--turquoise);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
      min-height: 280px;
    }
    .bento-1 h3 {
      font-family: 'Ribeye', cursive;
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }
    .bento-1 p { opacity: 0.9; line-height: 1.6; font-size: 1rem; }
    .bento-2 {
      grid-column: 5 / 9;
      min-height: 280px;
    }
    .bento-3 {
      grid-column: 9 / 13;
      min-height: 280px;
    }
    .bento-4 {
      grid-column: 1 / 5;
      min-height: 260px;
    }
    .bento-5 {
      grid-column: 5 / 9;
      background: var(--sunshine);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 260px;
    }
    .bento-5 h3 {
      font-family: 'Ribeye', cursive;
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
      color: var(--text);
    }
    .bento-5 p { color: var(--text-mid); line-height: 1.6; font-size: 1rem; }
    .bento-6 {
      grid-column: 9 / 13;
      min-height: 260px;
    }

    /* ======================== SERVICES PILLS ======================== */
    .services {
      background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
      position: relative;
      overflow: hidden;
    }
    .services-header { text-align: center; margin-bottom: 3rem; }
    .services-header .section-desc { margin: 0 auto; }
    .services-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .service-pill {
      background: white;
      border-radius: var(--radius);
      padding: 2.5rem 2rem;
      border: 2px solid transparent;
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .service-pill::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--turquoise);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: left;
    }
    .service-pill:hover::before { transform: scaleX(1); }
    .service-pill:hover {
      border-color: rgba(42, 181, 160, 0.15);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    }
    .service-pill:nth-child(2)::before { background: var(--coral); }
    .service-pill:nth-child(2):hover { border-color: rgba(232, 85, 61, 0.15); }
    .service-pill:nth-child(3)::before { background: var(--sunshine); }
    .service-pill:nth-child(3):hover { border-color: rgba(255, 186, 66, 0.15); }
    .pill-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .pill-icon svg {
      width: 26px; height: 26px;
      stroke: white;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .pill-icon-teal { background: var(--turquoise); }
    .pill-icon-coral { background: var(--coral); }
    .pill-icon-gold { background: var(--sunshine); }
    .service-pill h3 {
      font-family: 'Ribeye', cursive;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.7rem;
    }
    .service-pill p {
      color: var(--text-mid);
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }
    .pill-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: gap 0.3s ease;
    }
    .pill-link:hover { gap: 0.8rem; }
    .pill-link svg {
      width: 16px; height: 16px;
      stroke: currentColor;
      fill: none; stroke-width: 2;
    }
    .link-teal { color: var(--turquoise); }
    .link-coral { color: var(--coral); }
    .link-gold { color: var(--sunshine); }

    /* ======================== FOOD CAROUSEL ======================== */
    .food-section {
      background: var(--warm-white);
      padding-bottom: 3rem;
      position: relative;
      overflow: hidden;
    }
    .food-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/drinks-turquoise.svg');
      background-size: 520px 520px;
      background-repeat: repeat;
      opacity: 0.25;
      pointer-events: none;
    }
    .food-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2.5rem;
    }
    .food-scroll {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      padding-bottom: 1.5rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .food-scroll::-webkit-scrollbar { display: none; }
    .food-item {
      /*min-width: 300px;*/
      max-width: 300px;
      flex-shrink: 0;
      scroll-snap-align: start;
      cursor: pointer;
    }
    .food-img-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      margin-bottom: 1rem;
    }
    .food-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .food-item:hover .food-img-wrap img { transform: scale(1.08); }
    .food-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 0.3rem 0.8rem;
      border-radius: 100px;
      font-size: 1rem;
      font-weight: 600;
      color: white;
    }
    .tag-popular { background: var(--coral); }
    .tag-special { background: var(--turquoise); }
    .tag-new { background: var(--hot-pink); }
    .tag-classic { background: var(--sunshine); color: var(--text); }
    .food-item h4 {
      font-family: 'Ribeye', cursive;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .food-item p {
      color: var(--text-light);
      font-size: 1rem;
    }

    /* ======================== SPECIALS BANNER ======================== */
    .specials-banner {
      background: linear-gradient(135deg, var(--sunshine) 0%, var(--coral-light) 50%, var(--coral) 100%);
      border-radius: 32px;
      max-width: 1300px;
      margin: 0 auto 0;
      padding: 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .specials-content { position: relative; z-index: 1; }
    .specials-content h2 {
      font-family: 'Ribeye', cursive;
      font-size: clamp(2rem, 4vw, 3rem);
      color: white;
      margin-bottom: 1rem;
    }
    .specials-content > p {
      color: rgba(255,255,255,0.9);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .special-items {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .special-item {
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      color: white;
    }
    .special-day {
      background: rgba(255,255,255,0.25);
      padding: 0.3rem 0.7rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1rem;
      min-width: 90px;
      text-align: center;
    }
    .special-deal { font-weight: 500; }
    .specials-visual {
      position: relative;
      z-index: 1;
    }
    .specials-visual img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    .price-bubble {
      position: absolute;
      top: -15px;
      right: -15px;
      width: 130px;
      height: 130px;
      background: white;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      animation: pulse 2s infinite;
    }
    .price-bubble .amount {
      font-family: 'Ribeye', cursive;
      font-size: 2rem;
      font-weight: 700;
      color: var(--coral);
      line-height: 1;
    }
    .price-bubble .label {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-mid);
      font-weight: 600;
    }
    @keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

    /* ======================== WHY SECTION ======================== */
    .why-section {
      background: var(--turquoise);
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/cactus-white.svg');
      background-size: 500px 500px;
      background-repeat: repeat;
      opacity: 0.14;
      pointer-events: none;
    }
    .why-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
    .why-header .section-chip { background: rgba(255,255,255,0.2); color: white; }
    .why-header .section-chip svg { fill: white; }
    .why-header .section-title { color: white; }
    .why-header .section-desc { color: rgba(255,255,255,0.85); margin: 0 auto; }
    .why-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }
    .why-card {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.4s ease;
      cursor: pointer;
    }
    .why-card:hover {
      background: rgba(255,255,255,0.22);
      transform: translateY(-6px);
    }
    .why-card-icon {
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,0.2);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      transition: transform 0.3s ease;
    }
    .why-card:hover .why-card-icon { transform: rotate(-5deg) scale(1.1); }
    .why-card-icon svg {
      width: 30px; height: 30px;
      stroke: white;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .why-card h3 {
      font-family: 'Ribeye', cursive;
      font-size: 1.25rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.7rem;
    }
    .why-card p {
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      font-size: 1rem;
    }

    /* ======================== TESTIMONIALS ======================== */
    .reviews {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }
    .reviews::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/music-tacos-coral.svg');
      background-size: 520px 520px;
      background-repeat: repeat;
      opacity: 0.1;
      pointer-events: none;
    }
    .reviews-header { text-align: center; margin-bottom: 3rem; }
    .reviews-header .section-desc { margin: 0 auto; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .review-card {
      background: white;
      border-radius: var(--radius);
      padding: 2.5rem 2rem;
      position: relative;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.04);
      transition: all 0.3s ease;
    }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .review-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 2rem;
      right: 2rem;
      height: 3px;
      border-radius: 0 0 3px 3px;
    }
    .review-card:nth-child(1)::before { background: var(--coral); }
    .review-card:nth-child(2)::before { background: var(--turquoise); }
    .review-card:nth-child(3)::before { background: var(--sunshine); }
    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
    }
    .review-stars svg { width: 18px; height: 18px; fill: var(--sunshine); }
    .review-card blockquote {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-mid);
      font-style: italic;
      margin-bottom: 1.2rem;
    }
    .review-source {
      font-size: 1rem;
      color: var(--text-light);
      font-weight: 500;
    }

    /* ======================== LOCATION ======================== */
    .visit {
      background: var(--warm-white);
    }
    .visit-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: stretch;
      margin-top: 3rem;
    }
    .visit-map {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 420px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    .visit-map iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    .visit-details {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .visit-card {
      background: white;
      border-radius: 20px;
      padding: 1.8rem;
      border: 1px solid rgba(0,0,0,0.04);
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      flex: 1;
    }
    .visit-card h3 {
      font-family: 'Ribeye', cursive;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .visit-card h3 svg {
      width: 20px; height: 20px;
      stroke: var(--coral);
      fill: none; stroke-width: 2;
    }
    .visit-card p,
    .visit-card address {
      color: var(--text-mid);
      line-height: 1.7;
      font-style: normal;
      font-size: 1rem;
    }
    .visit-card a {
      color: var(--coral);
      text-decoration: none;
      font-weight: 600;
    }
    .visit-card a:hover { text-decoration: underline; }
    .hours-table {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .hours-table li {
      display: flex;
      justify-content: space-between;
      font-size: 1rem;
      color: var(--text-mid);
      padding: 0.3rem 0;
      border-bottom: 1px dashed rgba(0,0,0,0.06);
    }
    .hours-table li:last-child { border: none; }
    .hours-table .label { font-weight: 600; color: var(--text); }

    /* ======================== FAQ ======================== */
    .faq {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }
    .faq::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/wp-content/uploads/drinks-turquoise.svg');
      background-size: 520px 520px;
      background-repeat: repeat;
      opacity: 0.12;
      pointer-events: none;
    }
    .faq-header { text-align: center; margin-bottom: 3rem; }
    .faq-header .section-desc { margin: 0 auto; }
    .faq-list {
      max-width: 750px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .faq-item {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .faq-q {
      padding: 1.3rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text);
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      transition: color 0.3s;
    }
    .faq-q:hover { color: var(--coral); }
    .faq-toggle {
      width: 30px; height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .faq-item:nth-child(1) .faq-toggle { background: var(--coral); }
    .faq-item:nth-child(2) .faq-toggle { background: var(--turquoise); }
    .faq-item:nth-child(3) .faq-toggle { background: var(--sunshine); }
    .faq-item:nth-child(4) .faq-toggle { background: var(--lime); }
    .faq-item.active .faq-toggle { transform: rotate(45deg); }
    .faq-toggle svg {
      width: 14px; height: 14px;
      stroke: white;
      fill: none;
      stroke-width: 2.5;
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .faq-item.active .faq-a {
      max-height: 200px;
      padding: 0 1.5rem 1.3rem;
    }
    .faq-a p {
      color: var(--text-mid);
      line-height: 1.7;
      font-size: 1rem;
    }

    .food-scroll {
     
      cursor: grab;
    }

    .food-scroll.active {
      cursor: grabbing; 
      scroll-snap-type: none !important;
    }


    /* ======================== 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); }
    }
    @media (max-width: 768px) {    
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { order: -1; }
      .hero { padding-top: 6rem; }
      .bento-grid { grid-template-columns: 1fr; }
      .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: auto; }
      .services-row { grid-template-columns: 1fr; }
      .specials-banner { grid-template-columns: 1fr; padding: 2.5rem; border-radius: 24px; margin: 0 1rem; }
      .why-cards { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .visit-grid { grid-template-columns: 1fr; }   
      section { padding: 4rem 1.5rem; }
      .food-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }
    @media (max-width: 480px) {
      .hero-visual { grid-template-columns: 1fr; }
      .hero-img-card:nth-child(1) { grid-row: auto; }
      .hero-buttons { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
    }