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

    :root {
      --cream: #faf6f0;
      --warm-white: #fff8f2;
      --charcoal: #1a1512;
      --dark-brown: #2c1f0e;
      --mid-brown: #5c3d1e;
      --amber: #c8621a;
      --amber-light: #e07b2a;
      --green: #2f6e4f;
      --red: #b1331f;
      --text-muted: #6b5744;
      --border: #e8d5be;
      --section-bg: #f5ede0;
      --shadow: 0 18px 50px rgba(44,31,14,0.12);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
    body.no-scroll { overflow: hidden; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; }

    .section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; line-height: 1.1; color: var(--dark-brown); }
    .section-title em { font-style: italic; color: var(--amber); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 70px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease;
    }
    nav.scrolled { background: rgba(18, 11, 7, 0.96); backdrop-filter: blur(12px); border-bottom-color: rgba(200, 98, 26, 0.2); }
    .nav-brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--cream); letter-spacing: 0.04em; text-decoration: none; }
    .nav-brand span { color: #E25A22; font-weight: 700; }
    .nav-right { display: flex; align-items: center; gap: 2rem; }
    .nav-links { display: flex; align-items: center; gap: 2.2rem; }
    .nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,240,0.78); text-decoration: none; transition: color 0.3s; }
    .nav-links a:hover { color: var(--amber-light); }
    .nav-lang { display: flex; gap: 0.4rem; border-left: 1px solid rgba(200,98,26,0.3); padding-left: 1.4rem; }
    .nav-lang button { background: none; border: none; cursor: pointer; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(250,246,240,0.5); transition: color 0.3s; }
    .nav-lang button.active { color: #E25A22; }
    .nav-cart { position: relative; background: none; border: none; cursor: pointer; color: var(--cream); display: flex; align-items: center; }
    .nav-cart svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; }
    .nav-cart:hover { color: var(--amber-light); }
    .cart-count { position: absolute; top: -8px; right: -10px; background: var(--amber); color: #fff; font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; transform: scale(0); transition: transform 0.25s cubic-bezier(.34,1.56,.64,1); }
    .cart-count.show { transform: scale(1); }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: 0.3s; }

    /* ── HERO ── */
    #hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 110px 5% 90px; text-align: center; }
    .hero-bg { position: absolute; inset: 0; z-index: 0; background: #120b07; }
    .hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 50% 48%, rgba(18,11,7,0.5) 0%, transparent 68%),
        linear-gradient(to bottom, rgba(18,11,7,0.55) 0%, rgba(18,11,7,0.6) 50%, rgba(18,11,7,0.88) 74%, rgba(18,11,7,1) 100%);
    }
    #hero > *:not(.hero-bg) { position: relative; z-index: 1; }
    .hero-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: #E87040; border: 1px solid rgba(226,90,34,0.4); padding: 6px 18px; border-radius: 20px; margin-bottom: 1.8rem; animation: fadeUp 0.8s ease both; }
    .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 400; color: #FFFDF9; line-height: 1; margin-bottom: 0.15em; animation: fadeUp 0.8s 0.15s ease both; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
    .hero-title em { color: #E87040; font-style: italic; }
    .hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.7rem); color: rgba(250,246,240,0.72); font-style: italic; margin-bottom: 2rem; animation: fadeUp 0.8s 0.3s ease both; text-shadow: 0 3px 12px rgba(0,0,0,0.5); }
    .hero-desc { max-width: 580px; font-size: 0.98rem; line-height: 1.8; color: rgba(250,246,240,0.78); margin-bottom: 2.6rem; animation: fadeUp 0.8s 0.45s ease both; text-shadow: 0 3px 12px rgba(0,0,0,0.5); }
    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.6s ease both; }
    .hero-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(200,98,26,0.22); width: 100%; max-width: 820px; animation: fadeUp 0.8s 0.75s ease both; }
    .hero-feature { color: rgba(250,246,240,0.85); }
    .hero-feature-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: #E87040; }
    .hero-feature-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,240,0.6); margin-top: 4px; }

    .btn-primary { padding: 14px 32px; background: var(--amber); color: #fff; border: none; border-radius: 3px; cursor: pointer; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s; }
    .btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
    .btn-outline { padding: 14px 32px; background: transparent; color: var(--cream); border: 1px solid rgba(250,246,240,0.35); border-radius: 3px; cursor: pointer; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: border-color 0.3s, color 0.3s, transform 0.2s; }
    .btn-outline:hover { border-color: var(--amber); color: var(--amber-light); transform: translateY(-2px); }

    /* ── FEATURED CAROUSEL (ported from demo) ── */
    #featured { padding: 6rem 0 6.5rem; background: #120B07; overflow: hidden; position: relative; }
    #featured::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 40%, rgba(226,90,34,0.06) 0%, transparent 65%); }
    .ps-wrap { max-width: 1300px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 1; }
    .ps-header { text-align: center; margin-bottom: 56px; }
    .ps-header .section-label { color: #E25A22; }
    .ps-header .section-title { color: #FAF4EE; }
    .ps-header .section-title em { color: #E87040; }

    .ps-layout { display: grid; grid-template-columns: 230px 1fr 220px; gap: 0; align-items: center; min-height: 520px; }

    /* LEFT INFO */
    .ps-info { padding-right: 1.25rem; transition: opacity 0.3s ease, transform 0.3s ease; }
    .ps-info.fading { opacity: 0; transform: translateY(10px); }
    .ps-cat { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: #E25A22; margin-bottom: 0.85rem; }
    .ps-name { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.5vw, 2.6rem); font-weight: 600; color: #FAF4EE; line-height: 1.15; margin-bottom: 1.1rem; }
    .ps-desc { font-size: 0.875rem; line-height: 1.85; color: #D1C7BD; margin-bottom: 1.6rem; }
    .ps-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
    .ps-price { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 400; color: #E25A22; line-height: 1; }
    .ps-price small { font-size: 0.85rem; color: rgba(250,246,240,0.45); font-family: 'Inter', sans-serif; letter-spacing: 0.04em; }
    .ps-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
    .ps-cta-btn { padding: 12px 24px; background: var(--amber); color: #fff; border: 1px solid var(--amber); border-radius: 3px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.3s, transform 0.2s; }
    .ps-cta-btn:hover { background: var(--amber-light); transform: translateY(-2px); }
    .ps-cta-btn.secondary { background: rgba(250,246,240,0.06); color: #FAF4EE; border-color: rgba(226,90,34,0.34); }
    .ps-cta-btn.secondary:hover { background: rgba(226,90,34,0.16); color: #E87040; }

    /* CENTER STAGE */
    .ps-stage { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; }
    .ps-glow { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 390px; height: 55px; pointer-events: none; background: radial-gradient(ellipse, rgba(226,90,34,0.22) 0%, transparent 70%); }
    .ps-track { position: relative; width: 100%; height: 100%; }
    .ps-slide { position: absolute; top: 50%; left: 50%; width: 385px; height: 385px; border-radius: 50%; overflow: hidden; transform-origin: center center; transition: transform 0.65s cubic-bezier(0.4,0,0.2,1), opacity 0.65s cubic-bezier(0.4,0,0.2,1), box-shadow 0.65s ease; cursor: pointer; will-change: transform, opacity; }
    .ps-slide img { width:100%; height:100%; object-fit:cover; display:block; border-radius:50%; }
    .ps-slide::after { content:''; position:absolute; inset:0; border-radius:50%; border:2px solid rgba(226,90,34,0.12); pointer-events:none; transition: border-color 0.4s; }
    .ps-slide[data-pos="active"] { transform: translate(-50%,-50%) scale(1) rotate(0deg); opacity:1; z-index:3; box-shadow: 0 0 70px rgba(226,90,34,0.22), 0 20px 80px rgba(0,0,0,0.7); }
    .ps-slide[data-pos="active"]::after { border-color: rgba(226,90,34,0.4); }
    .ps-slide[data-pos="prev"] { transform: translate(calc(-50% - 240px),-50%) scale(0.58) rotate(-7deg); opacity:0.45; z-index:2; }
    .ps-slide[data-pos="next"] { transform: translate(calc(-50% + 240px),-50%) scale(0.58) rotate(7deg); opacity:0.45; z-index:2; }
    .ps-slide[data-pos="far-prev"] { transform: translate(calc(-50% - 460px),-50%) scale(0.28) rotate(-18deg); opacity:0; z-index:1; pointer-events:none; }
    .ps-slide[data-pos="far-next"] { transform: translate(calc(-50% + 460px),-50%) scale(0.28) rotate(18deg); opacity:0; z-index:1; pointer-events:none; }
    .ps-slide[data-pos="hidden"] { transform: translate(-50%,-50%) scale(0.15); opacity:0; z-index:0; pointer-events:none; }
    .ps-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:46px; height:46px; border-radius:50%; border:1px solid rgba(226,90,34,0.3); background:rgba(18,11,7,0.75); backdrop-filter:blur(8px); color:rgba(250,246,240,0.65); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all 0.3s; }
    .ps-arrow:hover { background:rgba(226,90,34,0.18); border-color:#E25A22; color:#E25A22; transform:translateY(-50%) scale(1.08); }
    .ps-arrow-left  { left:calc(50% - 215px); }
    .ps-arrow-right { right:calc(50% - 215px); }
    .ps-dots { position:absolute; bottom:6px; left:50%; transform:translateX(-50%); display:flex; gap:6px; align-items:center; }
    .ps-dot { width:5px; height:5px; border-radius:3px; background:rgba(250,246,240,0.18); cursor:pointer; transition:all 0.35s ease; }
    .ps-dot.active { width:20px; background:#E25A22; }

    /* RIGHT INGREDIENTS */
    .ps-ings { padding-left: 1.25rem; }
    .ps-ings-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(250,246,240,0.3); margin-bottom: 1.2rem; display: block; }
    .ps-ings-list { list-style: none; }
    .ps-ing-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(250,246,240,0.04); }
    .ps-ing-item:last-child { border-bottom: none; }
    .ps-ing-icon { width:32px; height:32px; border-radius:50%; flex-shrink:0; background:rgba(226,90,34,0.08); border:1px solid rgba(226,90,34,0.18); display:flex; align-items:center; justify-content:center; font-size:0.9rem; }
    .ps-ing-name { font-size:0.82rem; color:#D1C7BD; letter-spacing:0.02em; text-transform: capitalize; }

    @media (max-width:1024px) {
      .ps-layout { grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:2rem; }
      .ps-info  { grid-column:1; grid-row:2; padding:0; }
      .ps-stage { grid-column:1/-1; grid-row:1; height:420px; }
      .ps-ings  { grid-column:2; grid-row:2; padding:0; }
    }
    @media (max-width:640px) {
      .ps-layout { grid-template-columns:1fr; }
      .ps-stage  { grid-column:1; grid-row:1; height:330px; }
      .ps-info   { grid-column:1; grid-row:2; text-align:center; }
      .ps-info .ps-meta { align-items:center; }
      .ps-ings   { display:none; }
      .ps-slide  { width:230px; height:230px; }
      .ps-slide[data-pos="prev"] { transform:translate(calc(-50% - 150px),-50%) scale(0.5) rotate(-7deg); }
      .ps-slide[data-pos="next"] { transform:translate(calc(-50% + 150px),-50%) scale(0.5) rotate(7deg); }
      .ps-slide[data-pos="far-prev"] { transform:translate(calc(-50% - 270px),-50%) scale(0.26) rotate(-18deg); }
      .ps-slide[data-pos="far-next"] { transform:translate(calc(-50% + 270px),-50%) scale(0.26) rotate(18deg); }
      .ps-arrow-left  { left:calc(50% - 150px); }
      .ps-arrow-right { right:calc(50% - 150px); }
    }

    /* ── FULL MENU ── */
    #menu {
      position: relative;
      scroll-margin-top: 128px;
      padding: 6.5rem 5% 7rem;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(226,90,34,0.12) 0%, transparent 48%),
        linear-gradient(180deg, #120B07 0%, #1a1512 48%, #120B07 100%);
      overflow: hidden;
    }
    #menu::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(250,246,240,0.025) 1px, transparent 1px),
        linear-gradient(rgba(250,246,240,0.018) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    }
    #menu > * { position: relative; z-index: 1; }
    #menu .section-label { color: #E25A22; }
    #menu .section-title { color: #FAF4EE; }
    #menu .section-title em { color: #E87040; }
    .menu-head { text-align: center; max-width: 720px; margin: 0 auto 2.2rem; }
    .menu-head .menu-sub { color: rgba(250,246,240,0.62); margin-top: 1rem; font-size: 0.95rem; line-height: 1.75; }
    .menu-highlights {
      max-width: 860px;
      margin: 0 auto 2rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(226,90,34,0.18);
      background: rgba(250,246,240,0.045);
      backdrop-filter: blur(10px);
    }
    .menu-highlight {
      padding: 1.05rem 1.2rem;
      text-align: center;
      border-right: 1px solid rgba(226,90,34,0.14);
    }
    .menu-highlight:last-child { border-right: none; }
    .menu-highlight strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 400;
      color: #E87040;
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .menu-highlight span {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(250,246,240,0.48);
    }
    .menu-controls {
      max-width: 1100px;
      margin: 0 auto 3rem;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      border: 1px solid rgba(226,90,34,0.16);
      background: rgba(18,11,7,0.58);
      box-shadow: 0 22px 70px rgba(0,0,0,0.26);
      backdrop-filter: blur(12px);
    }
    .menu-search { width: 100%; max-width: 520px; position: relative; }
    .menu-search input {
      width: 100%;
      padding: 14px 18px 14px 46px;
      border: 1px solid rgba(226,90,34,0.22);
      border-radius: 3px;
      background: rgba(250,246,240,0.08);
      color: #FAF4EE;
      font-size: 0.92rem;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .menu-search input::placeholder { color: rgba(250,246,240,0.38); }
    .menu-search input:focus { border-color: #E25A22; background: rgba(250,246,240,0.11); box-shadow: 0 0 0 3px rgba(226,90,34,0.13); }
    .menu-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: rgba(250,246,240,0.52); fill: none; stroke-width: 1.8; }
    .menu-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem; }
    .menu-filters button {
      padding: 8px 15px;
      border: 1px solid rgba(226,90,34,0.2);
      background: rgba(250,246,240,0.055);
      border-radius: 3px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(250,246,240,0.58);
      cursor: pointer;
      transition: all 0.25s;
    }
    .menu-filters button:hover { border-color: #E25A22; color: #E87040; background: rgba(226,90,34,0.1); }
    .menu-filters button.active { background: #C8621A; border-color: #C8621A; color: #fff; box-shadow: 0 10px 24px rgba(200,98,26,0.22); }

    #menuList { max-width: 1160px; margin: 0 auto; }
    .menu-cat { margin: 0 auto 3rem; }
    .menu-cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
    .menu-cat-kicker {
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(250,246,240,0.34);
      margin-bottom: 0.3rem;
    }
    .menu-cat-title { font-family: 'Playfair Display', serif; font-size: clamp(1.55rem, 2.5vw, 2.05rem); color: #FAF4EE; line-height: 1.1; }
    .menu-cat-note { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; font-style: italic; color: rgba(250,246,240,0.54); margin-top: 0.28rem; }
    .menu-cat-count {
      flex-shrink: 0;
      padding: 7px 11px;
      border: 1px solid rgba(226,90,34,0.22);
      color: #E87040;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }
    .menu-cat-line { height: 1px; background: linear-gradient(90deg, rgba(226,90,34,0.42), rgba(226,90,34,0.06)); margin-bottom: 1.25rem; }
    .menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 0.9rem; }
    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 1rem;
      min-height: 136px;
      padding: 1.05rem;
      border: 1px solid rgba(226,90,34,0.13);
      background: linear-gradient(145deg, rgba(250,246,240,0.075), rgba(250,246,240,0.035));
      box-shadow: 0 14px 34px rgba(0,0,0,0.18);
      transition: border-color 0.25s, transform 0.25s, background 0.25s;
    }
    .menu-item:hover { border-color: rgba(226,90,34,0.34); background: linear-gradient(145deg, rgba(250,246,240,0.1), rgba(250,246,240,0.048)); transform: translateY(-2px); }
    .mi-left { flex: 1; min-width: 0; display: flex; flex-direction: column; }
    .mi-name { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 600; color: #FAF4EE; line-height: 1.2; }
    .mi-ings { font-size: 0.82rem; color: rgba(250,246,240,0.56); line-height: 1.55; margin-top: 0.45rem; }
    .mi-right { width: 112px; display: flex; flex-direction: column; gap: 0.5rem; align-items: stretch; justify-content: flex-start; }
    .mi-size {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 0.4rem;
      padding: 0.42rem 0.42rem 0.42rem 0.58rem;
      border: 1px solid rgba(226,90,34,0.14);
      background: rgba(18,11,7,0.32);
    }
    .mi-size-label { grid-column: 1 / -1; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,240,0.4); line-height: 1; }
    .mi-price { font-size: 0.9rem; font-weight: 700; color: #FAF4EE; min-width: 44px; text-align: left; }
    .mi-add { width: 28px; height: 28px; border-radius: 50%; border: 1px solid #E25A22; background: rgba(226,90,34,0.14); color: #E87040; font-size: 1.05rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
    .mi-add:hover { background: #C8621A; color: #fff; transform: scale(1.08); }
    .menu-empty {
      text-align: center;
      color: rgba(250,246,240,0.56);
      font-style: italic;
      padding: 3rem 0;
      border: 1px solid rgba(226,90,34,0.14);
      background: rgba(250,246,240,0.045);
    }

    /* ── RESERVE ── */
    #reserve { position: relative; padding: 6rem 5%; color: var(--cream); overflow: hidden; }
    .reserve-bg { position: absolute; inset: 0; z-index: 0; }
    .reserve-bg img { width: 100%; height: 100%; object-fit: cover; }
    .reserve-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,11,7,0.95) 0%, rgba(18,11,7,0.82) 50%, rgba(18,11,7,0.7) 100%); }
    .reserve-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .reserve-intro .section-title { color: var(--cream); }
    .reserve-intro .section-title em { color: var(--amber-light); }
    .reserve-text { color: rgba(250,246,240,0.72); line-height: 1.8; margin: 1.4rem 0 2rem; font-size: 0.95rem; }
    .reserve-info { display: flex; flex-direction: column; gap: 1rem; }
    .reserve-info-row { display: flex; gap: 0.9rem; align-items: center; color: rgba(250,246,240,0.85); font-size: 0.9rem; }
    .reserve-info-row svg { width: 18px; height: 18px; stroke: var(--amber-light); fill: none; stroke-width: 1.6; flex-shrink: 0; }
    .reserve-form { background: rgba(250,246,240,0.06); border: 1px solid rgba(200,98,26,0.25); border-radius: 12px; padding: 2.2rem; backdrop-filter: blur(8px); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
    .form-field label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,240,0.65); }
    .form-field input, .form-field select, .form-field textarea { padding: 11px 13px; background: rgba(18,11,7,0.5); border: 1px solid rgba(200,98,26,0.3); border-radius: 5px; color: var(--cream); font-size: 0.9rem; outline: none; transition: border-color 0.25s; font-family: inherit; }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--amber); }
    .form-field select option { background: var(--charcoal); }
    .reserve-form .btn-primary { width: 100%; margin-top: 0.5rem; border: none; }
    .form-success { display: none; text-align: center; padding: 2rem 0; }
    .form-success.show { display: block; }
    .form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
    .form-success .check svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2.5; }
    .form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.6rem; }
    .form-success p { color: rgba(250,246,240,0.7); font-size: 0.9rem; }

    /* ── ABOUT ── */
    #about {
      position: relative;
      padding: 7rem 5%;
      background:
        radial-gradient(ellipse at 20% 16%, rgba(226,90,34,0.14) 0%, transparent 34%),
        radial-gradient(ellipse at 85% 80%, rgba(200,98,26,0.09) 0%, transparent 32%),
        linear-gradient(180deg, #120B07 0%, #18100B 52%, #120B07 100%);
      color: var(--cream);
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(250,246,240,0.025) 1px, transparent 1px),
        linear-gradient(rgba(250,246,240,0.018) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    }
    #about > * { position: relative; z-index: 1; }
    #about .section-label { color: #E25A22; }
    #about .section-title { color: #FAF4EE; max-width: 680px; }
    #about .section-title em { color: #E87040; }
    .about-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 4.5rem; align-items: center; }
    .about-visual { position: relative; min-width: 0; }
    .about-visual::before {
      content: '';
      position: absolute;
      inset: 10% -9% -8% 13%;
      border: 1px solid rgba(226,90,34,0.18);
      border-radius: 50%;
    }
    .about-img { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 34px 90px rgba(0,0,0,0.45); border: 1px solid rgba(226,90,34,0.22); background: #211711; }
    .about-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,11,7,0.42), transparent 52%); pointer-events: none; }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-badge {
      position: absolute;
      bottom: -22px;
      right: -20px;
      background: linear-gradient(135deg, var(--amber), #E87040);
      color: #fff;
      border-radius: 8px;
      padding: 1.25rem 1.55rem;
      text-align: center;
      box-shadow: 0 18px 44px rgba(200,98,26,0.28);
    }
    .about-badge-num { font-family: 'Playfair Display', serif; font-size: 2.3rem; line-height: 1; }
    .about-badge-text { font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; margin-top: 4px; opacity: 0.92; }
    .about-note {
      position: absolute;
      left: 18px;
      bottom: 18px;
      background: rgba(18,11,7,0.82);
      border: 1px solid rgba(226,90,34,0.24);
      border-radius: 8px;
      padding: 0.8rem 0.95rem;
      backdrop-filter: blur(8px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.25);
    }
    .about-note span { display: block; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,246,240,0.58); margin-bottom: 3px; }
    .about-note strong { font-family: 'Playfair Display', serif; font-size: 1.18rem; color: #FAF4EE; }
    .about-content { min-width: 0; }
    .about-text { color: #D1C7BD; line-height: 1.9; margin: 1.35rem 0; font-size: 0.97rem; max-width: 680px; }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin: 2rem 0 1.5rem;
      border: 1px solid rgba(226,90,34,0.18);
      background: rgba(226,90,34,0.16);
    }
    .about-stats div { background: rgba(250,246,240,0.055); padding: 1.05rem; min-width: 0; }
    .about-stats strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: #E87040; line-height: 1; margin-bottom: 0.35rem; }
    .about-stats span { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,240,0.58); line-height: 1.35; }
    .about-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
    .badge-pill { font-size: 0.7rem; letter-spacing: 0.08em; padding: 7px 14px; border: 1px solid rgba(226,90,34,0.24); border-radius: 30px; color: #FAF4EE; background: rgba(250,246,240,0.06); }
    .about-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
    .about-actions .btn-primary,
    .about-actions .btn-outline { padding: 12px 24px; }

    /* ── FOOTER ── */
    footer { background: var(--charcoal); color: rgba(250,246,240,0.7); padding: 4rem 5% 2rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
    .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 1rem; }
    .footer-brand span { color: #E25A22; }
    .footer-col h4 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1.1rem; }
    .footer-col p, .footer-col a { font-size: 0.88rem; line-height: 1.9; color: rgba(250,246,240,0.7); text-decoration: none; display: block; }
    .footer-col a:hover { color: var(--amber-light); }
    .footer-bottom { max-width: 1100px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(200,98,26,0.2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(250,246,240,0.5); }

    /* ── CART DRAWER ── */
    .overlay { position: fixed; inset: 0; background: rgba(18,11,7,0.6); backdrop-filter: blur(3px); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .overlay.show { opacity: 1; pointer-events: auto; }
    .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--warm-white); z-index: 310; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); box-shadow: -10px 0 40px rgba(0,0,0,0.2); }
    .cart-drawer.show { transform: translateX(0); }
    .cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.6rem; border-bottom: 1px solid var(--border); }
    .cart-head h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark-brown); }
    .cart-close { background: none; border: none; font-size: 1.6rem; color: var(--text-muted); cursor: pointer; line-height: 1; }
    .cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; }
    .cart-empty { text-align: center; color: var(--text-muted); padding: 3rem 1rem; }
    .cart-empty svg { width: 48px; height: 48px; stroke: var(--border); fill: none; stroke-width: 1.4; margin: 0 auto 1rem; }
    .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
    .ci-info { flex: 1; }
    .ci-name { font-weight: 600; color: var(--dark-brown); font-size: 0.95rem; }
    .ci-size { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
    .ci-price { font-size: 0.85rem; color: var(--amber); margin-top: 4px; font-weight: 600; }
    .ci-controls { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
    .ci-qty { display: flex; align-items: center; gap: 0.6rem; }
    .ci-qty button { width: 26px; height: 26px; border: 1px solid var(--border); background: #fff; border-radius: 5px; cursor: pointer; font-size: 1rem; color: var(--mid-brown); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .ci-qty button:hover { border-color: var(--amber); color: var(--amber); }
    .ci-qty span { min-width: 18px; text-align: center; font-weight: 600; font-size: 0.9rem; }
    .ci-remove { background: none; border: none; font-size: 0.74rem; color: var(--red); cursor: pointer; text-decoration: underline; }
    .cart-foot { border-top: 1px solid var(--border); padding: 1.4rem 1.6rem; }
    .cart-total-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
    .cart-total-row.grand { font-size: 1.2rem; font-weight: 700; color: var(--dark-brown); margin: 0.8rem 0 1.2rem; }
    .cart-foot .btn-primary { width: 100%; text-align: center; }
    .cart-foot .btn-primary.disabled { opacity: 0.5; pointer-events: none; }

    /* ── CHECKOUT MODAL ── */
    .modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
    .modal.show { display: flex; }
    .modal-box { position: relative; background: var(--warm-white); border-radius: 14px; width: 540px; max-width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.4); animation: modalIn 0.35s cubic-bezier(.34,1.56,.64,1); }
    @keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
    .modal-head { padding: 1.8rem 2rem 1rem; border-bottom: 1px solid var(--border); }
    .modal-head h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dark-brown); }
    .modal-head p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
    .modal-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: none; font-size: 1.7rem; color: var(--text-muted); cursor: pointer; line-height: 1; }
    .modal-body { padding: 1.6rem 2rem 2rem; }
    .co-section-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin: 1.4rem 0 0.8rem; }
    .co-section-label:first-child { margin-top: 0; }
    .co-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
    .co-field label { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.04em; }
    .co-field input, .co-field select, .co-field textarea { padding: 11px 13px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9rem; outline: none; transition: border-color 0.25s; font-family: inherit; background: #fff; }
    .co-field input:focus, .co-field select:focus, .co-field textarea:focus { border-color: var(--amber); }
    .co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
    .co-toggle { display: flex; gap: 0.6rem; margin-bottom: 0.4rem; }
    .co-toggle button { flex: 1; padding: 12px; border: 1px solid var(--border); background: #fff; border-radius: 8px; cursor: pointer; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); transition: all 0.2s; }
    .co-toggle button.active { border-color: var(--amber); background: rgba(200,98,26,0.07); color: var(--amber); }
    .co-summary { background: var(--section-bg); border-radius: 8px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
    .co-summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); padding: 3px 0; }
    .co-summary-row.total { font-weight: 700; color: var(--dark-brown); font-size: 1.05rem; border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.7rem; }
    .co-pay-note { font-size: 0.72rem; color: var(--text-muted); font-style: italic; margin-top: 0.4rem; display: flex; gap: 6px; align-items: flex-start; }
    .co-pay-note svg { width: 14px; height: 14px; stroke: var(--amber); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 1px; }
    .modal-body .btn-primary { width: 100%; text-align: center; border: none; margin-top: 0.8rem; }
    .co-confirm { text-align: center; padding: 1.25rem 0 0.35rem; position: relative; overflow: hidden; }
    .co-confirm.success { animation: confirmSettle 0.45s ease both; }
    .co-confirm .check {
      position: relative; width: 82px; height: 82px; border-radius: 50%;
      background: linear-gradient(135deg, var(--amber), #E87040);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 1.35rem;
      box-shadow: 0 0 0 9px rgba(200,98,26,0.12), 0 18px 38px rgba(200,98,26,0.28);
      animation: checkPop 0.58s cubic-bezier(.2,1.65,.46,1) both;
    }
    .co-confirm .check::before {
      content: ''; position: absolute; inset: -10px; border-radius: inherit;
      border: 1px solid rgba(226,112,64,0.42);
      animation: checkPulse 1.45s ease-out 0.2s both;
    }
    .co-confirm .check svg { width: 39px; height: 39px; stroke: #fff; fill: none; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
    .co-confirm .check path { stroke-dasharray: 28; stroke-dashoffset: 28; animation: checkDraw 0.46s ease 0.34s forwards; }
    .co-confirm .burst { position: absolute; left: 50%; top: 48px; width: 6px; height: 6px; border-radius: 50%; background: #E87040; opacity: 0; pointer-events: none; animation: burstOut 0.72s ease-out 0.18s both; }
    .co-confirm .burst.b1 { --x: -72px; --y: -18px; }
    .co-confirm .burst.b2 { --x: -50px; --y: 32px; animation-delay: 0.25s; }
    .co-confirm .burst.b3 { --x: 58px; --y: -25px; animation-delay: 0.2s; }
    .co-confirm .burst.b4 { --x: 78px; --y: 28px; animation-delay: 0.28s; }
    .co-confirm .burst.b5 { --x: 0; --y: -62px; animation-delay: 0.22s; }
    .co-confirm h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.35rem); color: var(--dark-brown); margin-bottom: 0.65rem; line-height: 1.08; }
    .co-confirm p { color: var(--mid-brown); font-size: 0.96rem; line-height: 1.75; max-width: 410px; margin: 0 auto; }
    .co-confirm p strong { color: var(--amber); font-weight: 800; }
    .co-order-id { display: inline-block; margin-top: 1.25rem; background: rgba(200,98,26,0.11); border: 1px solid rgba(200,98,26,0.25); padding: 9px 18px; border-radius: 30px; font-weight: 800; color: var(--dark-brown); letter-spacing: 0.08em; }
    @keyframes confirmSettle { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
    @keyframes checkPop { 0% { opacity: 0; transform: scale(0.35) rotate(-14deg); } 72% { transform: scale(1.08) rotate(2deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }
    @keyframes checkDraw { to { stroke-dashoffset: 0; } }
    @keyframes checkPulse { 0% { opacity: 0.8; transform: scale(0.72); } 100% { opacity: 0; transform: scale(1.38); } }
    @keyframes burstOut { 0% { opacity: 0; transform: translate(-50%,0) scale(0.4); } 45% { opacity: 1; } 100% { opacity: 0; transform: translate(calc(-50% + var(--x)), var(--y)) scale(1); } }
    @media (prefers-reduced-motion: reduce) {
      .co-confirm.success,
      .co-confirm .check,
      .co-confirm .check::before,
      .co-confirm .check path,
      .co-confirm .burst { animation: none; }
      .co-confirm .check path { stroke-dashoffset: 0; }
      .co-confirm .burst { display: none; }
    }

    /* ── TOAST ── */
    .toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--dark-brown); color: var(--cream); padding: 13px 26px; border-radius: 30px; font-size: 0.88rem; z-index: 500; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.4s cubic-bezier(.34,1.56,.64,1); display: flex; align-items: center; gap: 10px; }
    .toast.show { transform: translateX(-50%) translateY(0); }
    .toast svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2.4; }

    /* ── REVEAL ANIM ── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.in { opacity: 1; transform: none; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(18,11,7,0.98); padding: 1rem 5%; }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid rgba(200,98,26,0.15); width: 100%; }
      .nav-toggle { display: flex; }
      .reserve-inner, .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-visual { max-width: 520px; }
      .about-badge { right: 16px; bottom: -20px; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 560px) {
      .form-row, .co-row { grid-template-columns: 1fr; }
      #about { padding: 5.2rem 5%; }
      .about-inner { gap: 2.2rem; }
      .about-img { aspect-ratio: 4/4.7; }
      .about-badge { right: 12px; bottom: -18px; padding: 0.95rem 1.1rem; }
      .about-badge-num { font-size: 1.75rem; }
      .about-badge-text { font-size: 0.58rem; }
      .about-note { left: 12px; bottom: 12px; max-width: calc(100% - 140px); padding: 0.68rem 0.75rem; }
      .about-note span { font-size: 0.54rem; }
      .about-note strong { font-size: 1rem; }
      .about-stats { grid-template-columns: 1fr; margin-top: 1.6rem; }
      .about-actions { flex-direction: column; }
      .about-actions .btn-primary,
      .about-actions .btn-outline { width: 100%; text-align: center; }
      .menu-grid { grid-template-columns: 1fr; }
      #menu { padding: 4.8rem 5% 5.5rem; }
      .menu-highlights { grid-template-columns: 1fr; }
      .menu-highlight { border-right: none; border-bottom: 1px solid rgba(226,90,34,0.14); }
      .menu-highlight:last-child { border-bottom: none; }
      .menu-controls { align-items: stretch; }
      .menu-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
      .menu-filters button { flex: 0 0 auto; }
      .menu-cat-head { align-items: flex-start; flex-direction: column; }
      .menu-cat-count { align-self: flex-start; }
      .menu-item { min-height: 0; flex-direction: column; }
      .mi-right { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .mi-size { min-height: 58px; }
      .hero-features { gap: 1.5rem; }
      .reserve-form, .modal-body, .modal-head { padding-left: 1.3rem; padding-right: 1.3rem; }
    }

/* Home: full menu teaser */
#menu-cta {
  position: relative;
  padding: 6rem 5%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226,90,34,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #120B07 0%, #1a1512 52%, #120B07 100%);
  text-align: center;
  overflow: hidden;
}
#menu-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250,246,240,0.022) 1px, transparent 1px),
    linear-gradient(rgba(250,246,240,0.016) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}
#menu-cta > * { position: relative; z-index: 1; }
.menu-cta-inner { max-width: 820px; margin: 0 auto; }
.menu-cta-inner .section-label { color: #E25A22; }
.menu-cta-inner .section-title { color: #FAF4EE; margin-bottom: 1rem; }
.menu-cta-inner .section-title em { color: #E87040; }
.menu-cta-text { color: rgba(250,246,240,0.62); line-height: 1.8; font-size: 0.98rem; max-width: 660px; margin: 0 auto 2rem; }
.menu-cta-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(226,90,34,0.18);
  background: rgba(250,246,240,0.045);
}
.menu-cta-stat {
  padding: 1rem;
  border-right: 1px solid rgba(226,90,34,0.14);
}
.menu-cta-stat:last-child { border-right: none; }
.menu-cta-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #E87040;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.menu-cta-stat span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.48);
}

/* ── MENU PAGE (separate page) ── */

.menu-page { padding-top: 96px; min-height: 100vh; }
.menu-page .menu-head { padding: 1.9rem 5% 0; }
.menu-page .menu-head.reveal { opacity: 1; transform: none; }
.menu-page .menu-controls {
  max-width: 760px;
  margin-bottom: 1.45rem;
  padding: 0.72rem;
  border-color: rgba(226,90,34,0.2);
}
.menu-page .menu-search { max-width: none; }

/* Category cards */
.cat-cards {
  max-width: 1160px;
  margin: 0 auto 1.4rem;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  background: rgba(226,90,34,0.18);
  border: 1px solid rgba(226,90,34,0.18);
}
.cat-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: center;
  padding: 0.95rem 0.78rem;
  border: 0;
  background: rgba(18,11,7,0.72);
  color: #FAF4EE;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226,90,34,0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover {
  background: rgba(250,246,240,0.075);
}
.cat-card:hover::before { opacity: 1; }
.cat-card.active {
  background: #C8621A;
  box-shadow: inset 0 -3px 0 rgba(255,255,255,0.24);
}
.cat-card > * { position: relative; z-index: 1; }
.cat-card-code {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226,90,34,0.28);
  background: rgba(18,11,7,0.35);
  color: #E87040;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.cat-card.active .cat-card-code {
  border-color: rgba(255,255,255,0.28);
  background: rgba(18,11,7,0.28);
  color: #fff;
}
.cat-card-main { min-width: 0; display: flex; flex-direction: column; gap: 0.24rem; }
.cat-card-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: #FAF4EE; line-height: 1.1; }
.cat-card-desc { font-size: 0.66rem; color: rgba(250,246,240,0.46); line-height: 1.3; }
.cat-card.active .cat-card-desc { color: rgba(255,255,255,0.74); }
.cat-card-meta {
  align-self: center;
  min-width: 30px;
  padding: 4px 7px;
  border: 1px solid rgba(226,90,34,0.2);
  background: rgba(18,11,7,0.24);
  color: rgba(250,246,240,0.64);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.cat-card.active .cat-card-meta {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
}

.menu-items-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5% 5rem;
}
.menu-back { display: none; }

.menu-cat {
  padding: 1.15rem;
  border: 1px solid rgba(226,90,34,0.16);
  background:
    linear-gradient(145deg, rgba(250,246,240,0.04), rgba(250,246,240,0.018)),
    rgba(18,11,7,0.34);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.menu-cat-hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem 1.15rem 1.2rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(226,90,34,0.14);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(226,90,34,0.13), transparent 58%),
    rgba(18,11,7,0.45);
}
.menu-cat-mark {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226,90,34,0.32);
  color: #E87040;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: rgba(18,11,7,0.38);
}
.menu-cat-copy { min-width: 0; }
.menu-cat-copy .menu-cat-title { display: block; margin: 0; }
.menu-cat-desc {
  max-width: 560px;
  margin-top: 0.5rem;
  color: rgba(250,246,240,0.56);
  font-size: 0.9rem;
  line-height: 1.6;
}
.menu-cat-facts {
  display: flex;
  gap: 0.6rem;
}
.menu-cat-facts span {
  min-width: 86px;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(226,90,34,0.18);
  background: rgba(18,11,7,0.36);
  color: rgba(250,246,240,0.52);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.menu-cat-facts strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #E87040;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.menu-cat .menu-grid {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1px;
  background: rgba(226,90,34,0.16);
  border: 1px solid rgba(226,90,34,0.16);
}
.menu-cat .menu-item {
  min-height: 118px;
  border: 0;
  box-shadow: none;
  background: linear-gradient(145deg, rgba(250,246,240,0.065), rgba(250,246,240,0.032));
}
.menu-cat .menu-item:hover {
  background: linear-gradient(145deg, rgba(250,246,240,0.1), rgba(250,246,240,0.05));
  transform: none;
}

@media (max-width: 560px) {
  #menu-cta { padding: 4.8rem 5%; }
  .menu-cta-panel { grid-template-columns: 1fr; }
  .menu-cta-stat { border-right: none; border-bottom: 1px solid rgba(226,90,34,0.14); }
  .menu-cta-stat:last-child { border-bottom: none; }
  .cat-cards {
    display: flex;
    overflow-x: auto;
    gap: 0.65rem;
    padding: 0 5% 0.35rem;
    scroll-snap-type: x mandatory;
  }
  .cat-card {
    flex: 0 0 72%;
    min-height: 104px;
    scroll-snap-align: start;
  }
  .cat-card-name { font-size: 1rem; }
  .cat-card-desc { font-size: 0.7rem; }
  .menu-cat { padding: 0.85rem; }
  .menu-cat-hero {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 0.9rem;
  }
  .menu-cat-mark { width: 52px; height: 52px; }
  .menu-cat-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .menu-cat-facts span { min-width: 0; }
  .menu-cat .menu-grid { grid-template-columns: 1fr; }
}

@media (min-width: 561px) and (max-width: 1080px) {
  .cat-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .menu-cat-hero { grid-template-columns: 64px minmax(0, 1fr); }
  .menu-cat-mark { width: 64px; height: 64px; }
  .menu-cat-facts { grid-column: 1 / -1; justify-content: flex-end; }
}
