:root { color-scheme: light; --bg: #f4f7fb; --surface: #ffffff; --ink: #10233b; --muted: #56687d; --line: #d6e0ec; --accent: #1170ee; --accent-2: #f97316; }
      * { box-sizing: border-box; }
      body { margin: 0; font-family: "Segoe UI", Arial, sans-serif; background: radial-gradient(circle at top left, rgba(17, 112, 238, 0.14), transparent 32%), radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 30%), var(--bg); color: var(--ink); }
      .wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
      .hero { padding: 88px 0 56px; }
      .eyebrow { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(17, 112, 238, 0.1); color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
      h1 { margin: 18px 0 14px; max-width: 700px; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.05; }
      .lead { max-width: 640px; margin: 0; font-size: 1.1rem; line-height: 1.7; color: var(--muted); }
      .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
      .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 12px; text-decoration: none; font-weight: 700; }
      .btn-primary { background: var(--accent); color: #fff; }
      .btn-secondary { border: 1px solid var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.72); }

      .menu { padding: 0 0 56px; }
      .menu-header { margin: 0 0 18px; }
      .menu-header h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2rem); }
      .menu-header p { margin: 0; color: var(--muted); line-height: 1.6; }
      .menu-groups { display: grid; gap: 20px; }
      .menu-group { border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.9); padding: 16px; }
      .menu-group h3 { margin: 0 0 12px; font-size: 1.1rem; text-transform: lowercase; color: var(--ink); }
      .menu-items { display: grid; gap: 12px; }
      .menu-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 10px; background: #fff; }
      .menu-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
      .menu-item-content h4 { margin: 0 0 4px; font-size: 1rem; line-height: 1.3; }
      .menu-item-content p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
      .menu-item-price { font-weight: 700; color: var(--ink); white-space: nowrap; }

      .grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding: 12px 0 64px; }
      .card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.84); box-shadow: 0 18px 36px rgba(16, 35, 59, 0.08); }
      .card h2 { margin: 0 0 10px; font-size: 1.05rem; }
      .card p { margin: 0; color: var(--muted); line-height: 1.65; }
      .cta { margin: 0 0 80px; padding: 32px; border-radius: 24px; background: linear-gradient(135deg, #10233b, #173965); color: #fff; }
      .cta p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.8); }
      .cta strong { color: #fff; }

      @media (min-width: 720px) {
        .menu-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      }
      @media (max-width: 860px) {
        .hero { padding-top: 64px; }
        .grid { grid-template-columns: 1fr; }
        .cta { padding: 24px; }
      }
      @media (max-width: 560px) {
        .menu-item { grid-template-columns: 56px 1fr; }
        .menu-item img { width: 56px; height: 56px; }
        .menu-item-price { grid-column: 2; justify-self: start; margin-top: 4px; }
      }

:root{
      --bg:#f5f8ff;
      --surface:#ffffff;
      --text:#0f172a;
      --muted:#475569;
      --line:#dbe5f5;
      --brand:#1d4ed8;
      --brand-dark:#1e40af;
      --shadow:0 8px 24px rgba(15,23,42,.08);
      --radius:16px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
      color:var(--text);
      background:linear-gradient(180deg,#eef4ff 0%,#f8fbff 40%,#f5f8ff 100%);
      line-height:1.45;
      padding-bottom:88px;
    }
    a,button{min-height:44px}
    .container{width:min(1100px,92vw);margin-inline:auto}
    .top{
      padding:28px 0 18px;
    }
    .badge{
      display:inline-block;
      font-size:.78rem;
      letter-spacing:.04em;
      text-transform:uppercase;
      color:var(--brand-dark);
      background:#dbeafe;
      border:1px solid #bfdbfe;
      border-radius:999px;
      padding:6px 10px;
    }
    h1{
      margin:10px 0 8px;
      font-size:clamp(1.6rem,2.6vw,2.4rem);
      line-height:1.15;
    }
    .subtitle{
      margin:0;
      color:var(--muted);
      max-width:62ch;
    }
    .quick-actions{
      margin-top:14px;
      display:flex;gap:10px;flex-wrap:wrap;
    }
    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      border-radius:999px;
      padding:10px 14px;
      font-weight:600;
      text-decoration:none;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
    }
    .btn.primary{
      background:var(--brand);
      border-color:var(--brand);
      color:#fff;
    }
    .btn:focus-visible,.chip:focus-visible,.card:focus-visible,.footer-cta a:focus-visible{
      outline:3px solid #93c5fd;outline-offset:2px;
    }

    .sticky-nav{
      position:sticky;top:0;z-index:30;
      background:rgba(245,248,255,.92);
      backdrop-filter:blur(8px);
      border-block:1px solid var(--line);
    }
    .chips{
      display:flex;gap:10px;overflow:auto;padding:10px 0;
      scrollbar-width:thin;
    }
    .chip{
      white-space:nowrap;
      border:1px solid #bfdbfe;
      background:#eff6ff;
      color:#1e3a8a;
      text-decoration:none;
      border-radius:999px;
      font-weight:600;
      padding:10px 14px;
      min-height:44px;
      display:inline-flex;align-items:center;
    }

    main{padding:18px 0 8px}
    section.menu-category{margin:10px 0 26px}
    .section-head{
      display:flex;align-items:center;justify-content:space-between;gap:8px;
      margin-bottom:12px;
    }
    .section-head h2{
      margin:0;font-size:clamp(1.2rem,2vw,1.6rem);
    }
    .section-line{flex:1;height:1px;background:var(--line)}

    .grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    .card{
      display:grid;
      grid-template-columns:96px 1fr;
      gap:12px;
      background:var(--surface);
      border:1px solid #e2e8f0;
      border-radius:var(--radius);
      padding:12px;
      text-decoration:none;
      color:inherit;
      box-shadow:var(--shadow);
    }
    .thumb{
      width:96px;height:96px;border-radius:12px;overflow:hidden;background:#e2e8f0;
    }
    .thumb img{width:100%;height:100%;object-fit:cover;display:block}
    .content{
      min-width:0;
      display:grid;
      gap:6px;
      align-content:start;
    }
    .name-row{
      display:flex;justify-content:space-between;align-items:start;gap:12px;
    }
    .item-name{
      margin:0;
      font-size:1rem;
      font-weight:700;
      line-height:1.25;
    }
    .price{
      margin:0;
      color:var(--brand-dark);
      font-weight:800;
      white-space:nowrap;
      font-size:.95rem;
    }
    .desc{
      margin:0;color:var(--muted);font-size:.92rem;
    }
    .meta{
      margin:0;color:#64748b;font-size:.8rem;
    }

    .cta-band{
      border:1px solid #bfdbfe;
      background:linear-gradient(90deg,#eff6ff,#f8fbff);
      border-radius:14px;
      padding:14px;
      display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between;
      margin:14px 0 22px;
    }
    .assist{
      background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:14px;margin:6px 0 24px;
    }
    .assist h3{margin:0 0 8px;font-size:1rem}
    .assist-links{display:flex;gap:8px;flex-wrap:wrap}

    .lead{
      background:#ffffff;
      border:1px solid #e2e8f0;
      border-radius:16px;
      padding:16px;
      margin-bottom:16px;
      box-shadow:var(--shadow);
    }
    .lead h3{margin:0 0 6px}
    .lead p{margin:0 0 12px;color:var(--muted)}
    form{display:grid;gap:10px}
    label{font-weight:600;font-size:.92rem}
    input,textarea{
      width:100%;
      border:1px solid #cbd5e1;border-radius:10px;padding:10px 12px;
      font:inherit;color:inherit;background:#fff;
    }
    textarea{min-height:96px;resize:vertical}
    .sr-only{
      position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
    }

    .footer-cta{
      position:fixed;left:0;right:0;bottom:0;z-index:40;
      border-top:1px solid var(--line);
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(8px);
      padding:10px 12px calc(10px + env(safe-area-inset-bottom));
    }
    .footer-cta .wrap{
      width:min(1100px,96vw);margin-inline:auto;
      display:flex;gap:8px;
    }
    .footer-cta a{
      flex:1;text-align:center;text-decoration:none;font-weight:700;
      border-radius:12px;padding:12px;
      border:1px solid var(--brand);background:var(--brand);color:#fff;
    }
    .footer-cta a.secondary{
      background:#fff;color:var(--brand);border-color:#93c5fd;
    }

    @media (min-width:700px){
      .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (min-width:1024px){
      .grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    }

:root{
      --bg:#ffffff;
      --bg-soft:#f7f2ea;
      --text:#0f1b3d;
      --muted:#5c6787;
      --accent:#2457ff;
      --accent-hover:#1f49d1;
      --card:#ffffff;
      --border:#e8eaf2;
      --shadow:0 8px 28px rgba(15,27,61,.08);
      --radius-xl:24px;
      --radius-lg:16px;
      --radius-pill:999px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0}
    body{
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color:var(--text);
      background:linear-gradient(180deg,var(--bg) 0%, #fff 55%, var(--bg-soft) 100%);
      line-height:1.5;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{width:min(var(--container),92vw);margin-inline:auto}
    .section{padding:56px 0}
    .eyebrow{font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);font-weight:600}
    h1,h2,h3{line-height:1.15;margin:0 0 14px}
    h1{font-size:clamp(2rem,5vw,3.7rem);font-weight:800;letter-spacing:-.02em}
    h2{font-size:clamp(1.4rem,3vw,2.2rem);font-weight:750;letter-spacing:-.015em}
    h3{font-size:1.12rem;font-weight:700}
    p{margin:0 0 14px;color:var(--muted)}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      min-height:44px;padding:0 18px;border-radius:var(--radius-pill);
      font-weight:650;font-size:.95rem;border:1px solid transparent;
      transition:.2s ease;cursor:pointer
    }
    .btn-primary{background:var(--accent);color:#fff}
    .btn-primary:hover{background:var(--accent-hover)}
    .btn-outline{border-color:var(--border);background:#fff;color:var(--text)}
    .btn-outline:hover{border-color:#cfd6e7}
    .btn-row{display:flex;gap:10px;flex-wrap:wrap}
    .topbar{
      position:sticky;top:0;z-index:40;
      backdrop-filter:saturate(140%) blur(8px);
      background:rgba(255,255,255,.86);
      border-bottom:1px solid rgba(232,234,242,.9)
    }
    .topbar-inner{
      min-height:68px;display:flex;align-items:center;justify-content:space-between;gap:12px
    }
    .brand{font-weight:800;letter-spacing:-.01em}
    .quick-links{display:flex;gap:8px;flex-wrap:wrap}
    .hero{
      padding:44px 0 30px;
    }
    .hero-grid{
      display:grid;gap:22px;align-items:center;
      grid-template-columns:1.15fr .85fr
    }
    .hero-media{
      border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow);
      min-height:260px;background:#e8ecf8
    }
    .hero-media img{height:100%;width:100%;object-fit:cover}
    .chipbar-wrap{
      position:sticky;top:68px;z-index:35;
      background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.82));
      border-bottom:1px solid rgba(232,234,242,.95)
    }
    .chipbar{
      display:flex;gap:10px;overflow:auto;padding:12px 0
    }
    .chip{
      white-space:nowrap;border:1px solid var(--border);background:#fff;color:var(--text);
      padding:8px 14px;border-radius:var(--radius-pill);font-size:.9rem;font-weight:600
    }
    .chip:focus-visible,.btn:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(36,87,255,.35);outline-offset:2px
    }
    .menu-section{padding-top:30px}
    .category-block{margin-top:30px}
    .menu-grid{
      display:grid;gap:14px;
      grid-template-columns:repeat(3,minmax(0,1fr))
    }
    .menu-card{
      background:var(--card);border:1px solid var(--border);border-radius:var(--radius-lg);
      box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column
    }
    .menu-card-image{aspect-ratio:16/10;background:#eef1f8}
    .menu-card-image img{width:100%;height:100%;object-fit:cover}
    .menu-card-body{padding:12px 12px 14px}
    .menu-meta{display:flex;align-items:start;justify-content:space-between;gap:10px}
    .price{font-weight:800;color:var(--text)}
    .featured{
      background:var(--bg-soft);border-top:1px solid #efe5d5;border-bottom:1px solid #efe5d5
    }
    .featured-row{display:grid;gap:12px;grid-template-columns:repeat(3,minmax(0,1fr))}
    .featured-item{background:#fff;border:1px solid var(--border);border-radius:14px;padding:14px}
    .actions-grid{display:grid;gap:10px;grid-template-columns:repeat(4,minmax(0,1fr))}
    .lead{
      background:#fff;border:1px solid var(--border);border-radius:var(--radius-xl);box-shadow:var(--shadow);
      padding:22px
    }
    form{display:grid;gap:12px}
    label{font-weight:600;font-size:.93rem}
    input,textarea{
      width:100%;border:1px solid #d9dff0;border-radius:12px;padding:12px 13px;
      font:inherit;color:var(--text);background:#fff
    }
    textarea{min-height:120px;resize:vertical}
    .field-note{font-size:.82rem;color:var(--muted)}
    footer{
      margin-top:56px;border-top:1px solid #e5e9f4;background:#fff
    }
    .footer-inner{
      padding:26px 0;display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between
    }
    .social{display:flex;gap:8px}
    .social a{
      border:1px solid var(--border);border-radius:999px;padding:8px 12px;font-size:.9rem
    }
    @media (max-width:980px){
      .hero-grid{grid-template-columns:1fr}
      .menu-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .featured-row{grid-template-columns:1fr 1fr}
      .actions-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:640px){
      .topbar-inner{min-height:62px}
      .menu-grid,.featured-row,.actions-grid{grid-template-columns:1fr}
      .section{padding:44px 0}
    }
    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto;transition:none!important}
    }