:root{
      --bg0:#050506;
      --bg1:#09090b;
      --panel: rgba(255,255,255,0.06);
      --panel2: rgba(255,255,255,0.08);
      --border: rgba(255,255,255,0.14);
      --text: rgba(255,255,255,0.94);
      --muted: rgba(255,255,255,0.74);
      --muted2: rgba(255,255,255,0.60);

      --gold:#f0b323;
      --red:#c0392b;

      --shadow: 0 18px 55px rgba(0,0,0,0.55);
      --radius: 20px;
      --max: 1100px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      color: var(--text);
      background:
        radial-gradient(900px 450px at 15% 10%, rgba(240,179,35,0.18), transparent 60%),
        radial-gradient(900px 450px at 85% 20%, rgba(192,57,43,0.18), transparent 62%),
        radial-gradient(900px 450px at 50% 100%, rgba(255,255,255,0.06), transparent 60%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, var(--bg0) 100%);
      overflow-x:hidden;
    }

    a{ color:inherit; text-decoration:none; }
    a:hover{ text-decoration:underline; }

    .wrap{
      max-width: var(--max);
      margin: 0 auto;
      padding: 26px 16px 48px;
    }

    /* Warm bokeh overlay to avoid “dark mode” vibe */
    .bokeh{
      position: fixed;
      inset: 0;
      pointer-events:none;
      opacity: 0.9;
      background:
        radial-gradient(14px 14px at 18% 24%, rgba(240,179,35,0.22), transparent 65%),
        radial-gradient(22px 22px at 22% 18%, rgba(255,255,255,0.08), transparent 65%),
        radial-gradient(18px 18px at 28% 30%, rgba(192,57,43,0.16), transparent 65%),
        radial-gradient(26px 26px at 72% 20%, rgba(240,179,35,0.18), transparent 65%),
        radial-gradient(20px 20px at 78% 28%, rgba(255,255,255,0.07), transparent 65%),
        radial-gradient(16px 16px at 84% 16%, rgba(192,57,43,0.14), transparent 65%),
        radial-gradient(18px 18px at 46% 78%, rgba(240,179,35,0.12), transparent 65%),
        radial-gradient(28px 28px at 58% 72%, rgba(192,57,43,0.10), transparent 65%);
      filter: blur(0.2px);
      mix-blend-mode: screen;
    }

    /* HERO */
    header.hero{
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      padding: 22px 18px 26px;
      position: relative;
      overflow:hidden;
      text-align: center;
    }
    header.hero:before{
      content:"";
      position:absolute;
      inset:-120px -140px auto auto;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle at 30% 30%, rgba(240,179,35,0.40), transparent 62%);
      filter: blur(10px);
      transform: rotate(18deg);
      pointer-events:none;
    }
    header.hero:after{
      content:"";
      position:absolute;
      inset:auto auto -140px -120px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle at 45% 45%, rgba(192,57,43,0.30), transparent 64%);
      filter: blur(12px);
      pointer-events:none;
    }

    .hero-top{
      display:flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 14px;
    }

    .hero-actions{
      display:flex;
      gap:10px;
      justify-content:center;
      flex-wrap:wrap;
      margin-top: 16px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.06);
      font-weight: 650;
      font-size: 14px;
      color: var(--text);
      transition: transform .12s ease, background .12s ease, border .12s ease;
    }
    .btn:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.22);
      text-decoration:none;
    }
    .btn.primary{
      background: linear-gradient(180deg, rgba(240,179,35,0.95), rgba(240,179,35,0.78));
      color: #15120a;
      border-color: rgba(240,179,35,0.35);
    }

    /* Large logo (hero image) */
    .hero-logo{
      width: min(520px, 92%);
      margin: 4px auto 12px;
      display:block;
      filter: drop-shadow(0 18px 45px rgba(0,0,0,0.55));
    }

    .tag{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(192,57,43,0.16);
      border: 1px solid rgba(192,57,43,0.26);
      color: rgba(255,255,255,0.90);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .hero h1{
      margin: 8px 0 8px;
      font-size: clamp(30px, 4.5vw, 44px);
      letter-spacing: -0.7px;
      line-height: 1.05;
    }
    .hero p.lead{
      margin: 0 auto;
      max-width: 78ch;
      color: var(--muted);
      line-height: 1.65;
      font-size: 16px;
    }

    .hero p.lead a{
      text-decoration: underline;
    }

    /* SECTION shells */
    section{
      margin-top: 18px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      padding: 22px 18px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }
    .section-title{
      text-align:center;
      margin-bottom: 14px;
    }
    .section-title h2{
      margin: 0;
      font-size: 26px;
      letter-spacing: -0.3px;
    }
    .section-title p{
      margin: 8px 0 0;
      color: var(--muted2);
      font-size: 13px;
    }

    /* Menu grid */
    .grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .card{
      grid-column: span 3;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.14);
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      overflow:hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }
    .card-media{
      height: 185px;
      position: relative;
      background:
        radial-gradient(120px 80px at 30% 25%, rgba(240,179,35,0.22), transparent 60%),
        radial-gradient(120px 80px at 70% 35%, rgba(192,57,43,0.18), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.10));
    }
    .card-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display:block;
      transform: scale(1.02);
      object-position: 25% 32%;
    }
    .chip{
      position:absolute;
      left: 12px;
      bottom: 12px;
      display:inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 12px;
      background: rgba(240,179,35,0.92);
      color: #15120a;
      border: 1px solid rgba(240,179,35,0.35);
      box-shadow: 0 10px 22px rgba(0,0,0,0.35);
    }
    .card-body{
      padding: 14px 14px 16px;
    }
    .card-body h3{
      margin: 0 0 6px;
      font-size: 16px;
    }
    .card-body p{
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    /* Owner section */
    .note{
      display:grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 14px;
      align-items:start;
    }
    .note p{
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 15px;
      max-width: 80ch;
    }
    .signature{
    margin-top: 20px;
    font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
    font-size: 48px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
    }
    .side{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.05);
      padding: 14px;
    }
    .side h4{
      margin: 0 0 8px;
      font-size: 14px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }
    .side ul{
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }

    /* Footer */
    footer{
      margin-top: 18px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      display:flex;
      flex-wrap:wrap;
      gap: 10px 16px;
      align-items:center;
      justify-content: space-between;
      color: var(--muted2);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap: 10px 12px;
      align-items:center;
    }
    .footer-links a{
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.88);
    }

    /* Responsive */
    @media (max-width: 980px){
      .card{ grid-column: span 6; }
      .note{ grid-template-columns: 1fr; }
    }
    @media (max-width: 560px){
      .card{ grid-column: span 12; }
      header.hero{ padding: 18px 14px 22px; }
    }