    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --terra:        #C4622D;
      --terra-dark:   #9E4A1E;
      --terra-light:  #E07A46;
      --gold:         #E8A020;
      --gold-light:   #F5C84A;
      --dark:         #1A0F08;
      --dark-mid:     #231408;
      --dark-card:    #2D1A0C;
      --cream:        #FFF8EE;
      --cream-dark:   #F5EDDF;
      --green:        #2D5A3D;
      --text:         #2A1810;
      --text-muted:   #7A5545;
      --white:        #FFFFFF;
      --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 3px; }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: 70px;
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }

    nav.scrolled {
      background: rgba(18, 8, 0, 0.97);
      box-shadow: 0 1px 0 rgba(232,160,32,0.15), 0 4px 30px rgba(0,0,0,0.4);
      backdrop-filter: blur(10px);
    }

    .nav-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 1.9rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.3px;
      line-height: 1;
    }

    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--terra) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.3rem;
      border-radius: 5px;
      letter-spacing: 0.8px !important;
    }

    .nav-cta:hover { background: var(--terra-dark) !important; color: var(--white) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ─── MOBILE MENU ─── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      color: var(--white);
      text-decoration: none;
      font-size: 1.8rem;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      transition: color 0.25s;
    }

    .mobile-menu a:hover { color: var(--gold); }

    .mobile-close {
      position: absolute;
      top: 1.5rem; right: 2rem;
      background: none; border: none;
      color: rgba(255,255,255,0.6);
      font-size: 1.8rem;
      cursor: pointer;
      transition: color 0.25s;
    }

    .mobile-close:hover { color: var(--white); }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://s3-media0.fl.yelpcdn.com/bphoto/vJo0cGoQ8D1U1HKd0ovQIw/o.jpg');
      background-size: cover;
      background-position: center 40%;
      will-change: transform;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(18,8,0,0.72) 0%,
        rgba(18,8,0,0.48) 45%,
        rgba(18,8,0,0.78) 100%
      );
    }

    /* decorative texture lines */
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(232,160,32,0.03) 60px,
        rgba(232,160,32,0.03) 61px
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      padding: 0 2rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(196,98,45,0.9);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 0.45rem 1.3rem;
      border-radius: 50px;
      margin-bottom: 1.8rem;
      border: 1px solid rgba(255,255,255,0.15);
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.2rem, 9vw, 6.5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.0;
      margin-bottom: 1.2rem;
      text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }

    .hero-divider {
      width: 50px;
      height: 2px;
      background: var(--gold);
      margin: 1.4rem auto;
      border-radius: 2px;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.78);
      font-weight: 300;
      letter-spacing: 0.5px;
      margin-bottom: 0.8rem;
    }

    .hero-rating {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 0.4rem 1rem;
      margin-bottom: 2.8rem;
    }

    .hero-rating .stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
    .hero-rating span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 0.9rem 2.2rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      letter-spacing: 0.4px;
      transition: all 0.28s var(--ease);
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-primary {
      background: var(--terra);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(196,98,45,0.35);
    }

    .btn-primary:hover {
      background: var(--terra-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(196,98,45,0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.5);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
      transform: translateY(-3px);
    }

    /* ─── SECTION SHARED ─── */
    section { padding: 110px 6%; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 0.8rem;
      display: block;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--dark);
      margin-bottom: 1.4rem;
    }

    .section-title span { color: var(--terra); }

    .divider {
      width: 55px;
      height: 3px;
      background: linear-gradient(to right, var(--terra), var(--gold));
      border-radius: 2px;
      margin-bottom: 2.2rem;
    }

    .divider.center { margin-left: auto; margin-right: auto; }

    /* ─── ABOUT ─── */
    #about {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    #about::before {
      content: 'TAQUERIA';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Playfair Display', serif;
      font-size: clamp(5rem, 14vw, 13rem);
      font-weight: 900;
      color: rgba(255,255,255,0.025);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      letter-spacing: 0.2em;
    }

    #about .section-label { color: var(--gold); }
    #about .section-title { color: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.9;
      color: rgba(255,255,255,0.7);
      margin-bottom: 1.3rem;
      font-weight: 300;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
      margin-top: 2.2rem;
    }

    .highlight {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      padding: 1rem;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      background: rgba(255,255,255,0.03);
      transition: border-color 0.25s, background 0.25s;
    }

    .highlight:hover {
      border-color: rgba(232,160,32,0.3);
      background: rgba(232,160,32,0.05);
    }

    .highlight-icon { font-size: 1.3rem; flex-shrink: 0; }

    .highlight h4 {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 0.25rem;
      letter-spacing: 0.3px;
    }

    .highlight p {
      font-size: 0.77rem !important;
      color: rgba(255,255,255,0.45) !important;
      margin-bottom: 0 !important;
      line-height: 1.5 !important;
    }

    .about-images {
      position: relative;
      height: 520px;
    }

    .about-img-main {
      position: absolute;
      top: 0; right: 0;
      width: 82%;
      height: 88%;
      object-fit: cover;
      border-radius: 14px;
      display: block;
    }

    .about-img-accent {
      position: absolute;
      bottom: 0; left: 0;
      width: 52%;
      height: 55%;
      object-fit: cover;
      border-radius: 12px;
      border: 5px solid var(--dark);
      display: block;
      z-index: 2;
    }

    .about-badge {
      position: absolute;
      bottom: 2rem; right: -1rem;
      background: var(--terra);
      color: var(--white);
      width: 96px;
      height: 96px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      line-height: 1.4;
      z-index: 3;
      border: 4px solid var(--dark);
    }

    .about-badge strong {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      display: block;
      line-height: 1;
    }

    /* ─── MENU ─── */
    #menu { background: var(--cream); }

    .menu-header { text-align: center; margin-bottom: 3.5rem; }

    .menu-header p.body {
      color: var(--text-muted);
      max-width: 500px;
      margin: 0 auto;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .menu-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .tab-btn {
      padding: 0.55rem 1.6rem;
      border-radius: 50px;
      border: 2px solid var(--terra);
      background: transparent;
      color: var(--terra);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.5px;
    }

    .tab-btn.active, .tab-btn:hover {
      background: var(--terra);
      color: var(--white);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.6rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .menu-item {
      background: var(--white);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 2px 18px rgba(0,0,0,0.07);
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
      display: none;
    }

    .menu-item.active { display: flex; flex-direction: column; }

    .menu-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.13);
    }

    .menu-item-img {
      width: 100%;
      height: 205px;
      object-fit: cover;
      display: block;
    }

    .menu-item-placeholder {
      width: 100%;
      height: 205px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      flex-shrink: 0;
    }

    .placeholder-burritos { background: linear-gradient(135deg, #C4622D 0%, #E8A020 100%); }
    .placeholder-plates   { background: linear-gradient(135deg, #2D5A3D 0%, #4A8C60 100%); }
    .placeholder-drinks   { background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); }
    .placeholder-tacos    { background: linear-gradient(135deg, #7C3D12 0%, #C4622D 100%); }

    .menu-item-body {
      padding: 1.3rem 1.5rem 1.4rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .menu-item-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }

    .menu-item-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 1rem;
      flex: 1;
    }

    .menu-item-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .menu-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--terra);
    }

    .menu-tag {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 0.22rem 0.65rem;
      border-radius: 50px;
    }

    .tag-popular { color: var(--green); background: rgba(45, 90, 61, 0.1); }
    .tag-hot     { color: #B91C1C; background: rgba(185, 28, 28, 0.1); }
    .tag-special { color: #6B21A8; background: rgba(107, 33, 168, 0.1); }
    .tag-fresh   { color: #0369A1; background: rgba(3, 105, 161, 0.1); }

    /* ─── GALLERY ─── */
    #gallery {
      background: var(--dark-mid);
      padding: 110px 5%;
    }

    .gallery-header { text-align: center; margin-bottom: 3.5rem; }
    .gallery-header .section-label { color: var(--gold); }
    .gallery-header .section-title { color: var(--white); }
    .gallery-header .section-title span { color: var(--gold); }

    .gallery-grid {
      columns: 4 220px;
      column-gap: 10px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 10px;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      display: block;
    }

    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.5s var(--ease);
    }

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

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18,8,0,0.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 1rem 1.1rem;
    }

    .gallery-item:hover .gallery-overlay { opacity: 1; }

    .gallery-caption {
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.94);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }

    .lightbox.open { display: flex; }

    .lightbox img {
      max-width: 92vw;
      max-height: 88vh;
      border-radius: 10px;
      object-fit: contain;
      box-shadow: 0 0 80px rgba(0,0,0,0.8);
    }

    .lightbox-close {
      position: absolute;
      top: 1.5rem; right: 2rem;
      color: rgba(255,255,255,0.7);
      font-size: 2.2rem;
      cursor: pointer;
      background: none;
      border: none;
      transition: color 0.2s;
      line-height: 1;
    }

    .lightbox-close:hover { color: var(--white); }

    /* ─── REVIEWS ─── */
    #reviews { background: var(--cream-dark); }

    .reviews-header { text-align: center; margin-bottom: 2rem; }

    .overall-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
      padding: 2rem;
      background: var(--white);
      border-radius: 14px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

    .rating-number {
      font-family: 'Playfair Display', serif;
      font-size: 4.5rem;
      font-weight: 900;
      color: var(--terra);
      line-height: 1;
    }

    .rating-right .stars {
      color: var(--gold);
      font-size: 1.3rem;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 0.3rem;
    }

    .rating-right p {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .review-card {
      background: var(--white);
      border-radius: 14px;
      padding: 1.8rem 2rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .review-card::before {
      content: '\201C';
      position: absolute;
      top: -0.5rem; right: 1.2rem;
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      color: rgba(196,98,45,0.08);
      line-height: 1;
      pointer-events: none;
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.11);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.1rem;
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .av-1 { background: linear-gradient(135deg, #C4622D, #E8A020); }
    .av-2 { background: linear-gradient(135deg, #2D5A3D, #4A8C60); }
    .av-3 { background: linear-gradient(135deg, #1E3A8A, #3B82F6); }
    .av-4 { background: linear-gradient(135deg, #7C3D12, #C4622D); }
    .av-5 { background: linear-gradient(135deg, #6B21A8, #A855F7); }
    .av-6 { background: linear-gradient(135deg, #0F766E, #14B8A6); }

    .reviewer-name {
      font-weight: 600;
      font-size: 0.93rem;
      color: var(--dark);
    }

    .reviewer-loc {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 1px;
    }

    .review-stars {
      color: var(--gold);
      font-size: 0.88rem;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
    }

    .review-text {
      font-size: 0.88rem;
      line-height: 1.8;
      color: var(--text);
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .review-date {
      font-size: 0.74rem;
      color: var(--text-muted);
      margin-top: 1.1rem;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .yelp-note {
      text-align: center;
      margin-top: 2.5rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .yelp-note a {
      color: var(--terra);
      text-decoration: none;
      font-weight: 600;
    }

    .yelp-note a:hover { text-decoration: underline; }

    /* ─── HOURS & LOCATION ─── */
    #location {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    #location .section-label { color: var(--gold); }
    #location .section-title { color: var(--white); }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hours-table {
      width: 100%;
      border-collapse: collapse;
    }

    .hours-table tr {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.2s;
    }

    .hours-table tr:hover { background: rgba(255,255,255,0.03); }

    .hours-table td {
      padding: 0.9rem 0.4rem;
      font-size: 0.93rem;
    }

    .hours-table td:first-child {
      color: rgba(255,255,255,0.5);
    }

    .hours-table td:last-child {
      color: var(--white);
      font-weight: 500;
      text-align: right;
    }

    .hours-table tr.today td {
      color: var(--gold) !important;
    }

    .hours-table tr.today td:first-child::after {
      content: ' ●';
      color: #22C55E;
      font-size: 0.6rem;
      vertical-align: middle;
    }

    .contact-block {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.75);
    }

    .contact-row a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.25s;
    }

    .contact-row a:hover { color: var(--gold); }

    .contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .map-frame {
      width: 100%;
      height: 400px;
      border-radius: 14px;
      border: none;
      filter: grayscale(0.15) saturate(1.1);
    }

    /* ─── ORDER ─── */
    #order {
      background: var(--terra);
      text-align: center;
      padding: 90px 6%;
      position: relative;
      overflow: hidden;
    }

    #order::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
                        radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
    }

    #order > * { position: relative; z-index: 1; }

    #order .section-label { color: rgba(255,255,255,0.65); }
    #order .section-title { color: var(--white); }
    #order .divider { background: rgba(255,255,255,0.35); }

    .order-desc {
      color: rgba(255,255,255,0.82);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto 2.8rem;
      line-height: 1.75;
      font-weight: 300;
    }

    .order-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: var(--white);
      color: var(--terra);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .btn-white:hover {
      background: var(--cream);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.55);
    }

    .btn-ghost:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
      transform: translateY(-3px);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      padding: 3.5rem 6% 2.5rem;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 2rem;
    }

    .footer-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 2rem;
      color: var(--white);
      text-decoration: none;
    }

    .footer-logo span { color: var(--gold); }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.5px;
      transition: color 0.25s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .footer-copy {
      color: rgba(255,255,255,0.22);
      font-size: 0.77rem;
    }

    .footer-yelp {
      color: rgba(255,255,255,0.3);
      font-size: 0.77rem;
    }

    /* ─── FADE-IN ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    }

    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
      .about-images    { display: none; }
      .location-grid   { grid-template-columns: 1fr; gap: 3rem; }
      .gallery-grid    { columns: 3 180px; }
      .nav-links       { display: none; }
      .hamburger       { display: flex; }
    }

    @media (max-width: 640px) {
      section          { padding: 80px 5%; }
      .gallery-grid    { columns: 2 140px; }
      .menu-grid       { grid-template-columns: 1fr; }
      .reviews-grid    { grid-template-columns: 1fr; }
      .hero-title      { font-size: clamp(2.4rem, 11vw, 4rem); }
      .footer-top      { flex-direction: column; align-items: flex-start; }
      .footer-bottom   { flex-direction: column; }
      .about-highlights { grid-template-columns: 1fr; }
    }
  