  :root {
      --bg: #fdf8f2;
      --surface: #fff9f2;
      --surface2: #fff3e6;
      --border: #e8ddd0;
      --border2: #d4c8b8;
      --orange: #e8530a;
      --orange2: #ff6b2b;
      --amber: #f5a623;
      --green: #2d7a4f;
      --green-bg: #edf7f1;
      --red: #c0392b;
      --red-bg: #fdf0ee;
      --dark: #2a1f14;
      --text: #3d2e20;
      --muted: #8a7060;
      --muted2: #b8a898;
      --white: #ffffff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 400;
    }
   
    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      height: 64px;
      background: rgba(253, 248, 242, 0.94);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    

    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 900;
      font-size: 1.2rem;
      color: var(--dark);
      text-decoration: none;
    }

    .nav-logo span {
      font-style: italic;
      color: var(--amber);
    }

    .nav-back {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      transition: color 0.2s;
    }

    .nav-back:hover {
      color: var(--orange);
    }

    /* ── BANNER ── */
    .banner {
      height: 300px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 2rem 5vw;
      background: linear-gradient(135deg, #fff0e6, #ffd4a8);
    }

    .banner-emoji {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10rem;
      opacity: 0.22;
      pointer-events: none;
      user-select: none;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(253, 248, 242, 0.97) 0%, rgba(253, 248, 242, 0.3) 55%, transparent 100%);
    }

    .banner-content {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .banner-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .banner-name {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--dark);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .banner-meta {
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

    .banner-meta span {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 500;
    }

    .banner-rating {
      color: var(--amber) !important;
      font-weight: 700 !important;
    }

    .status-open {
      background: var(--green-bg);
      color: var(--green);
      font-size: 0.78rem;
      padding: 5px 12px;
      border-radius: 99px;
      font-weight: 700;
    }

    .status-closed {
      background: var(--red-bg);
      color: var(--red);
      font-size: 0.78rem;
      padding: 5px 12px;
      border-radius: 99px;
      font-weight: 700;
    }

    /* ── INFO BAR ── */
    .info-bar {
      display: flex;
      flex-wrap: wrap;
      border-bottom: 2px solid var(--border);
      background: var(--white);
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 1rem 1.5rem;
      border-right: 1px solid var(--border);
    }

    .info-item:last-child {
      border-right: none;
    }

    .info-icon {
      font-size: 1.1rem;
    }

    .info-label {
      font-size: 0.7rem;
      color: var(--muted2);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      font-weight: 700;
    }

    .info-val {
      font-size: 0.88rem;
      color: var(--text);
      font-weight: 600;
      margin-top: 1px;
    }

    /* ── PAGE BODY ── */
    .page-body {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5vw 6rem;
    }

    /* ── CATEGORY TABS ── */
    .cat-tabs {
      position: sticky;
      top: 64px;
      z-index: 50;
      background: var(--bg);
      border-bottom: 2px solid var(--border);
      padding: 0.85rem 0;
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .cat-tab {
      background: var(--white);
      border: 1.5px solid var(--border);
      color: var(--muted);
      padding: 0.65rem 1.5rem;
      border-radius: 99px;
      font-size: 0.90rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .cat-tab:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .cat-tab.active {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }

    /* ── MENU CATEGORY ── */
    .menu-category {
      margin-bottom: 3.5rem;
      scroll-margin-top: 135px;
    }

    .cat-title {
      font-family: 'Fraunces', serif;
      font-size: 1.35rem;
      color: var(--dark);
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid var(--border);
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
    }

    .cat-count {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.75rem;
      color: var(--muted2);
      font-weight: 500;
      margin-left: auto;
    }

    /* ── DISH CARDS ── */
    .dishes-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .dish {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      align-items: stretch;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .dish:hover {
      border-color: var(--orange);
      box-shadow: 0 8px 30px rgba(232, 83, 10, 0.1);
      transform: translateY(-2px);
    }

    /* Photo thumbnail */
    .dish-photo {
      width: 100px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: var(--surface2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .dish-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s;
    }

    .dish-photo:hover img {
      transform: scale(1.08);
    }

    .dish-photo-emoji {
      font-size: 2.5rem;
      line-height: 1;
      transition: transform 0.35s;
    }

    .dish-photo:hover .dish-photo-emoji {
      transform: scale(1.15);
    }

    .dish-photo-zoom {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 4px;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }

    .dish-photo:hover .dish-photo-zoom {
      opacity: 1;
    }

    /* No-photo placeholder */
    .dish-no-photo {
      width: 100px;
      flex-shrink: 0;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }

    .dish-body {
      flex: 1;
      padding: 1rem 1.1rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-width: 0;
    }

    .dish-name {
      font-size: 0.93rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.25rem;
    }

    .dish-desc {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.55;
      flex: 1;
      margin-bottom: 0.65rem;
    }

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

    .dish-price {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--orange);
      font-family: 'Fraunces', serif;
      letter-spacing: -0.02em;
    }

    .dish-tags {
      display: flex;
      gap: 0.3rem;
      flex-wrap: wrap;
    }

    .tag {
      font-size: 0.62rem;
      padding: 2px 7px;
      border-radius: 4px;
      font-weight: 700;
    }

    .tag-vegan {
      background: var(--green-bg);
      color: var(--green);
    }

    .tag-spicy {
      background: #fff0ee;
      color: #c0392b;
    }

    .tag-popular {
      background: rgba(245, 166, 35, 0.12);
      color: #c07000;
    }

    .tag-new {
      background: rgba(52, 152, 219, 0.1);
      color: #2471a3;
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(42, 31, 20, 0.92);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 2rem;
      cursor: pointer;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-inner {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      max-width: 580px;
      width: 100%;
      cursor: default;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      animation: lbIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes lbIn {
      from {
        opacity: 0;
        transform: scale(0.88);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .lightbox-img {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
      background: var(--surface2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
    }

    .lightbox-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .lightbox-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .lightbox-close:hover {
      background: var(--orange);
    }

    .lightbox-body {
      padding: 1.5rem;
    }

    .lightbox-name {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }

    .lightbox-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 1rem;
    }

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

    .lightbox-price {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--orange);
      letter-spacing: -0.03em;
    }

    /* ── FOOTER ── */
    .page-footer {
      text-align: center;
      padding: 2rem 5vw;
      border-top: 1px solid var(--border);
      font-size: 0.82rem;
      color: var(--muted2);
    }

    .page-footer a {
      color: var(--orange);
      text-decoration: none;
      font-weight: 600;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .info-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
      }

      .info-item {
        flex-shrink: 0;
      }
    }

    @media (max-width: 600px) {
      .dishes-grid {
        grid-template-columns: 1fr;
      }

      .banner {
        height: 240px;
      }

      .dish-photo,
      .dish-no-photo {
        width: 85px;
      }
    }

    @media (max-width: 400px) {
      .cat-tab {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
      }

      .dish-photo,
      .dish-no-photo {
        width: 75px;
      }
    }