 :root {
      --red:       #C8243B;
      --orange:    #F0551E;
      --amber:     #F5A623;
      --cream:     #FAF6F1;
      --parchment: #F2EBE0;
      --dark:      #160F05;
      --ink:       #271C0E;
      --muted:     #7A6A55;
      --steel:     #2B2215;
      --white:     #FFFFFF;
      --card:      #FFFCF8;
      --border:    #E8DDD0;
      --font-h: 'Fraunces', Georgia, serif;
      --font-b: 'Plus Jakarta Sans', sans-serif;
      --r:  16px;
      --r2: 24px;
      --sh: 0 2px 24px rgba(22,15,5,.09);
      --sh2:0 8px 40px rgba(22,15,5,.14);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b);
      background: var(--cream);
      color: var(--ink);
      line-height: 1.65;
      overflow-x: hidden;
    }
    a  { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }

    /* ── COMMON ── */
    .pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--amber); color: var(--dark);
      font-size: .7rem; font-weight: 700;
      letter-spacing: .09em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 99px;
      margin-bottom: 16px;
    }
    .h1 {
      font-family: var(--font-h);
      font-size: clamp(2.8rem, 6vw, 4.4rem);
      line-height: 1.08; font-weight: 900;
    }
    .h2 {
      font-family: var(--font-h);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15; font-weight: 700;
    }
    .lead { color: var(--muted); font-size: 1.05rem; max-width: 500px; }
    .grad {
      background: linear-gradient(100deg, var(--orange) 20%, var(--red));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--font-b); font-weight: 600; font-size: .93rem;
      padding: 13px 26px; border-radius: 99px;
      border: none; cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-fire {
      background: linear-gradient(130deg, var(--orange), var(--red));
      color: #fff;
      box-shadow: 0 6px 22px rgba(192,36,59,.30);
    }
    .btn-fire:hover { box-shadow: 0 10px 28px rgba(192,36,59,.38); }
    .btn-ghost {
      background: transparent; color: var(--ink);
      border: 2px solid var(--border);
    }
    .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
    .btn-wa {
      background: #22C55E; color: #fff;
      box-shadow: 0 6px 22px rgba(34,197,94,.28);
    }
    .btn-wa:hover { box-shadow: 0 10px 28px rgba(34,197,94,.38); }

    /* ── HEADER ── */
    header {
      position: sticky; top: 0; z-index: 200;
      background: rgba(250,246,241,.92);
      backdrop-filter: blur(16px) saturate(1.4);
      -webkit-backdrop-filter: blur(16px) saturate(1.4);
      border-bottom: 1px solid var(--border);
    }
    nav {
      max-width: 1120px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 24px;
    }
    .logo { display: flex; align-items: center; gap: 11px; }
    .logo-icon {
      width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange), var(--red));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem;
      box-shadow: 0 3px 12px rgba(240,85,30,.35);
    }
    .logo-copy { line-height: 1; }
    .logo-name {
      font-family: var(--font-h); font-size: 1.4rem; font-weight: 900;
      letter-spacing: -.02em;
    }
    .logo-name span { color: var(--orange); }
    .logo-tag { font-size: .62rem; color: var(--muted); letter-spacing: .09em; text-transform: uppercase; }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a {
      font-size: .88rem; font-weight: 600; color: var(--muted);
      position: relative; padding-bottom: 3px;
      transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--orange);
      transition: width .25s; border-radius: 2px;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-links a:hover::after { width: 100%; }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .ham { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--ink); font-size: 1.2rem; }

    /* drawer */
    .drawer {
      display: none; flex-direction: column;
      background: var(--cream); border-top: 1px solid var(--border);
      padding: 16px 24px 24px;
    }
    .drawer.open { display: flex; }
    .drawer a {
      padding: 13px 0; border-bottom: 1px solid var(--border);
      font-weight: 600; font-size: .95rem; color: var(--ink);
      display: flex; align-items: center; gap: 10px;
    }
    .drawer a i { color: var(--orange); width: 16px; }
    .drawer a:last-of-type { border-bottom: none; }
    .drawer-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
    .drawer-btns .btn { justify-content: center; }

    /* ── HERO ── */
    .hero-wrap {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: center;
      padding: 76px 24px 88px;
    }
    .hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
    .live-dot {
      display: flex; align-items: center; gap: 6px;
      background: #fff; border: 1px solid var(--border);
      border-radius: 99px; padding: 5px 12px 5px 8px;
      font-size: .72rem; font-weight: 700; color: #16a34a;
    }
    .live-dot i { font-size: .45rem; color: #22c55e; animation: blink 1.6s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .hero-title { margin-bottom: 20px; }
    .hero-sub   { margin-bottom: 36px; }
    .hero-btns  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
    .hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
    .stat strong {
      display: block;
      font-family: var(--font-h); font-size: 2rem; line-height: 1;
      color: var(--orange);
    }
    .stat span { font-size: .78rem; color: var(--muted); font-weight: 500; }

    .hero-visual { position: relative; }
    .hero-plate {
      border-radius: var(--r2); overflow: hidden;
      background: linear-gradient(145deg, #FFE9D0, #FFCFA3);
      aspect-ratio: 1 / 1.05;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--sh2), 0 0 0 10px rgba(240,85,30,.06);
      position: relative;
    }
    .hero-placeholder { text-align: center; padding: 40px; }
    .hero-placeholder .ph-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(240,85,30,.12);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 2rem; color: var(--orange);
    }
    .hero-placeholder p { font-size: .8rem; color: var(--muted); line-height: 1.6; }
    .hero-placeholder strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: 4px; }

    .chip {
      position: absolute;
      background: var(--white); border-radius: 14px;
      padding: 10px 16px; box-shadow: var(--sh2);
      display: flex; align-items: center; gap: 10px;
      font-size: .8rem; font-weight: 700;
      animation: bob 3.2s ease-in-out infinite;
    }
    .chip.c1 { top: 22px; right: -22px; animation-delay: 0s; }
    .chip.c2 { bottom: 30px; left: -22px; animation-delay: 1.4s; }
    .chip .star-row { display: flex; gap: 2px; color: var(--amber); font-size: .68rem; margin-bottom: 2px; }
    .chip-label { font-size: .65rem; color: var(--muted); font-weight: 500; }
    @keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

    /* ── TICKER ── */
    .ticker {
      background: var(--ink); overflow: hidden; padding: 14px 0;
      border-top: 1px solid rgba(255,255,255,.04);
    }
    .ticker-track {
      display: inline-flex;
      animation: tick 28s linear infinite;
      white-space: nowrap;
    }
    .ticker-track span {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .78rem; font-weight: 700; letter-spacing: .07em;
      text-transform: uppercase; color: rgba(255,255,255,.65);
      padding: 0 28px;
    }
    .ticker-track span i { color: var(--amber); font-size: .7rem; }
    @keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* ── ABOUT ── */
    .about-section {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
      padding: 96px 24px;
    }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .value-card {
      border-radius: var(--r); padding: 24px 20px;
      background: var(--card); border: 1px solid var(--border);
      transition: transform .25s, box-shadow .25s;
    }
    .value-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
    .value-card .vc-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(240,85,30,.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--orange);
      margin-bottom: 14px;
    }
    .value-card h4 { font-size: .93rem; font-weight: 700; margin-bottom: 4px; }
    .value-card p  { font-size: .78rem; color: var(--muted); }
    .value-card.accent {
      background: linear-gradient(135deg, var(--orange), var(--red));
      border: none; color: #fff;
    }
    .value-card.accent .vc-icon { background: rgba(255,255,255,.18); color: #fff; }
    .value-card.accent p { color: rgba(255,255,255,.72); }
    .value-card.gold-accent {
      background: linear-gradient(135deg, var(--amber), #e8890e);
      border: none; color: var(--dark);
    }
    .value-card.gold-accent .vc-icon { background: rgba(22,15,5,.12); color: var(--dark); }
    .value-card.gold-accent p { color: rgba(22,15,5,.65); }

    .about-text .lead { margin-bottom: 16px; }
    .feat-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
    .feat-item { display: flex; align-items: flex-start; gap: 14px; }
    .feat-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px;
      background: var(--parchment); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--orange);
    }
    .feat-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
    .feat-item p  { font-size: .8rem; color: var(--muted); }

    /* ── MENU ── */
    .menu-section { background: var(--ink); padding: 96px 24px; }
    .menu-inner { max-width: 1120px; margin: 0 auto; }
    .menu-header { margin-bottom: 48px; }
    .menu-header .h2 { color: #fff; margin-bottom: 8px; }
    .menu-header .lead { color: rgba(255,255,255,.45); }

    .tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
    .tab {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 9px 20px; border-radius: 99px; border: none;
      font-family: var(--font-b); font-size: .83rem; font-weight: 700;
      cursor: pointer; transition: .2s;
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.5);
    }
    .tab i { font-size: .8rem; }
    .tab.active, .tab:hover { background: var(--orange); color: #fff; }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 18px;
    }
    .m-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--r); overflow: hidden;
      transition: transform .25s, border-color .25s, box-shadow .25s;
    }
    .m-card:hover {
      transform: translateY(-5px);
      border-color: rgba(240,85,30,.45);
      box-shadow: 0 14px 36px rgba(0,0,0,.45);
    }
    .m-thumb {
      height: 144px;
      background: rgba(255,255,255,.04);
      display: flex; align-items: center; justify-content: center;
      border-bottom: 1px solid rgba(255,255,255,.06);
      position: relative;
      overflow: hidden;
    }
    .m-img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover;
      transition: transform .3s ease;
    }
    .m-card:hover .m-img {
      transform: scale(1.08);
    }
    .m-thumb .th-icon { font-size: 2.8rem; color: rgba(255,255,255,.18); }
    .m-thumb .tag {
      position: absolute; top: 10px; left: 12px;
      font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
      padding: 3px 10px; border-radius: 99px;
      display: flex; align-items: center; gap: 5px;
    }
    .tag i { font-size: .6rem; }
    .tag-best { background: var(--amber); color: var(--dark); }
    .tag-hot  { background: var(--red);   color: #fff; }
    .tag-new  { background: #22c55e;      color: #fff; }

    .m-body { padding: 16px; }
    .m-body h3 { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .m-body p  { font-size: .77rem; color: rgba(255,255,255,.42); margin-bottom: 14px; line-height: 1.55; }
    .m-foot { display: flex; align-items: center; justify-content: space-between; }
    .m-price {
      font-family: var(--font-h); font-size: 1.1rem;
      color: var(--amber); font-weight: 700;
    }
    .m-price small { font-family: var(--font-b); font-size: .7rem; color: rgba(255,255,255,.28); font-weight: 400; margin-left: 2px; }
    .m-order {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(240,85,30,.15);
      border: none; cursor: pointer; color: var(--orange);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem;
      transition: background .2s, transform .2s;
    }
    .m-order:hover { background: var(--orange); color: #fff; transform: scale(1.1); }

    .menu-cta { text-align: center; margin-top: 52px; }
    .menu-cta p { color: rgba(255,255,255,.4); font-size: .88rem; margin-bottom: 16px; }

    /* ── ORDER ── */
    .order-section {
      max-width: 860px; margin: 0 auto;
      padding: 96px 24px; text-align: center;
    }
    .order-section .h2 { margin-bottom: 10px; }
    .order-section .lead { margin: 0 auto 44px; }

    .platforms {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
      margin-bottom: 16px;
    }
    .pcard {
      background: var(--card); border: 1.5px solid var(--border);
      border-radius: var(--r); padding: 28px 36px;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      min-width: 160px; transition: transform .2s, box-shadow .2s, border-color .2s;
      cursor: pointer;
    }
    .pcard:hover { transform: translateY(-4px); box-shadow: var(--sh2); border-color: var(--orange); }
    .pcard .p-icon {
      width: 54px; height: 54px; border-radius: 14px;
      background: var(--parchment); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--orange);
    }
    .pcard strong { font-size: .93rem; font-weight: 700; }
    .pcard span   { font-size: .75rem; color: var(--muted); }
    .pcard .soon  { font-size: .65rem; background: var(--parchment); border-radius: 99px; padding: 2px 8px; color: var(--muted); }

    .divider {
      display: flex; align-items: center; gap: 14px;
      color: var(--muted); font-size: .83rem;
      margin: 28px 0;
    }
    .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

    .wa-box {
      background: linear-gradient(135deg, #f0fdf4, #dcfce7);
      border: 1.5px solid #bbf7d0;
      border-radius: var(--r2); padding: 44px 36px;
    }
    .wa-box .wa-head {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      margin-bottom: 10px;
    }
    .wa-box .wa-head i { font-size: 1.8rem; color: #16a34a; }
    .wa-box .wa-head h3 { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; }
    .wa-box p { color: var(--muted); font-size: .93rem; margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }

    /* ── FOOTER ── */
    footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 64px 24px 32px; }
    .footer-inner { max-width: 1120px; margin: 0 auto; }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 56px; padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,.07);
      margin-bottom: 28px;
    }
    .f-brand .f-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
    .f-brand .logo-name { color: #fff; font-family: var(--font-h); font-size: 1.4rem; font-weight: 900; }
    .f-brand .logo-name span { color: var(--orange); }
    .f-brand > p { font-size: .85rem; margin-bottom: 22px; line-height: 1.75; max-width: 270px; }
    .socials { display: flex; gap: 10px; }
    .soc {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: .9rem;
      transition: background .2s, color .2s, transform .2s;
    }
    .soc:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
    .f-col h5 {
      color: #fff; font-size: .8rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .1em;
      margin-bottom: 18px;
    }
    .f-col li { margin-bottom: 11px; }
    .f-col a {
      font-size: .85rem; color: rgba(255,255,255,.45);
      display: inline-flex; align-items: center; gap: 8px;
      transition: color .2s;
    }
    .f-col a i { font-size: .75rem; color: var(--orange); width: 14px; }
    .f-col a:hover { color: var(--amber); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: .78rem; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom a { color: var(--orange); }

    /* ── FLOATING WA ── */
    .float-wa {
      position: fixed; bottom: 26px; right: 26px; z-index: 300;
      width: 58px; height: 58px; border-radius: 50%;
      background: #22c55e;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.6rem;
      box-shadow: 0 4px 22px rgba(34,197,94,.45);
      transition: transform .2s;
      animation: wapulse 2.8s ease-in-out infinite;
    }
    .float-wa:hover { transform: scale(1.1); }
    @keyframes wapulse {
      0%,100%{box-shadow:0 4px 22px rgba(34,197,94,.45)}
      50%{box-shadow:0 4px 36px rgba(34,197,94,.7)}
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
      .nav-links, .nav-actions { display: none; }
      .ham { display: block; }
      .hero-wrap { grid-template-columns: 1fr; padding: 48px 20px 64px; gap: 40px; }
      .hero-visual { order: -1; }
      .chip.c1 { right: 0; }
      .chip.c2 { left: 0; }
      .about-section { grid-template-columns: 1fr; padding: 64px 20px; gap: 40px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-stats { gap: 20px; }
      .wa-box { padding: 32px 20px; }
    }
    @media (max-width: 480px) {
      .tabs { gap: 6px; }
      .tab { padding: 8px 14px; font-size: .77rem; }
      .pcard { padding: 22px 24px; min-width: 130px; }
    }