@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Poppins:wght@400;500;600&display=swap');

:root { --ink:#1f1f1f; --orange:#f0852e; --cream:#e3d5b5; --deep:#024f47; --green:#3eb076; --paper:#f4f0e7; }
* { box-sizing:border-box; }
html { background:#111; }
body { margin:0; background:var(--paper); color:var(--ink); font-family:Poppins,Arial,sans-serif; }
button { font:inherit; }
.app-shell { width:100%; max-width:540px; min-height:100vh; margin:auto; background:var(--paper); overflow:hidden; padding-bottom:32px; }
.hero { position:relative; min-height:298px; padding:24px 24px 27px; color:#fff; background:var(--ink); isolation:isolate; overflow:hidden; }
.hero::after { content:""; position:absolute; inset:auto -8% -70px; height:132px; border-top:2px solid var(--green); transform:rotate(-4deg); box-shadow:0 -16px 0 -14px var(--green),0 -34px 0 -32px var(--green); z-index:-1; }
.hero::before { content:""; position:absolute; width:240px; height:240px; right:-100px; top:-135px; border:2px solid #244a3d; border-radius:50%; box-shadow:-22px 25px 0 -20px #244a3d,-46px 49px 0 -44px #244a3d; z-index:-1; }
.topline,.hero-meta { display:flex; justify-content:space-between; font:500 13px 'Barlow Condensed',sans-serif; letter-spacing:.18em; color:var(--cream); }
.topline { padding-bottom:21px; border-bottom:1px solid #455047; }
.logo { display:block; width:92%; max-width:410px; margin:27px auto 17px; }
.hero-meta { align-items:center; gap:14px; flex-wrap:wrap; color:var(--green); font-size:12px; }
.hero-meta strong { color:var(--orange); font-weight:700; }
.hero-rule { width:66px; height:5px; background:var(--orange); margin-top:20px; }
.hero-note { position:absolute; right:22px; bottom:23px; color:var(--cream); text-align:right; font:400 14px 'Barlow Condensed'; letter-spacing:.08em; line-height:1.05; text-transform:uppercase; }
.hero-note b { color:var(--green); font-weight:600; }
.leaf-a { position:absolute; left:14px; bottom:26px; color:#255c48; font-size:34px; transform:rotate(-20deg); }
.now-card { display:flex; align-items:center; gap:12px; margin:18px 18px 8px; padding:14px 16px; border:1px solid #c8bfae; background:#eee8dc; border-radius:5px; }
.now-card small { display:block; color:var(--deep); font:600 11px 'Barlow Condensed'; letter-spacing:.16em; }
.now-card strong { display:block; margin-top:3px; font:600 17px 'Barlow Condensed'; }
.pulse { width:12px; height:12px; flex:0 0 12px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 5px #f8d5ba; }
.arrow { margin-left:auto; color:var(--orange); font-size:25px; }
.intro { display:flex; justify-content:space-between; align-items:end; gap:20px; padding:20px 22px 15px; }
.eyebrow { color:var(--orange); font:600 12px 'Barlow Condensed'; letter-spacing:.15em; text-transform:uppercase; }
h1 { margin:5px 0 0; font:700 37px/.87 'Barlow Condensed'; text-transform:uppercase; letter-spacing:-.02em; }
h1 em { color:var(--deep); font-style:normal; }
.intro p { max-width:132px; margin:0 0 2px; color:#685f52; font-size:11px; line-height:1.45; }
.menu-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; padding:8px 18px; }
.menu-item { position:relative; min-height:148px; padding:15px 14px 13px; border:0; text-align:left; color:var(--ink); background:#fffaf1; box-shadow:0 2px 0 #d7cfbf; border-radius:4px; cursor:pointer; overflow:hidden; transition:transform .15s,box-shadow .15s; }
.menu-item:active { transform:translateY(2px); box-shadow:none; }
.menu-item::after { content:""; position:absolute; right:-20px; bottom:-32px; width:94px; height:94px; border:1px solid currentColor; border-radius:50%; opacity:.28; }
.menu-item:nth-child(3n) { background:var(--deep); color:#fff; }
.menu-item:nth-child(3n+2) { background:var(--green); }
.menu-item:nth-child(4n) { background:var(--orange); }
.menu-icon { display:grid; place-items:center; width:48px; height:48px; border:1.5px solid currentColor; border-radius:50%; font-size:24px; margin-bottom:20px; }
.menu-item h2 { max-width:120px; margin:0; font:600 22px/.9 'Barlow Condensed'; text-transform:uppercase; letter-spacing:.02em; }
.menu-item p { margin:6px 0 0; max-width:140px; opacity:.78; font-size:10px; line-height:1.3; }
.app-footer { display:flex; align-items:center; gap:12px; padding:25px 22px 0; color:#766e62; font-size:10px; line-height:1.3; }
.app-footer img { width:76px; height:45px; object-fit:contain; object-position:left center; }
.sheet-backdrop { position:fixed; inset:0; z-index:4; background:#0008; opacity:0; pointer-events:none; transition:opacity .25s; }
.detail-sheet { position:fixed; z-index:5; left:50%; bottom:0; width:min(540px,100%); max-height:88vh; overflow:auto; padding:34px 22px 30px; background:var(--paper); border-radius:20px 20px 0 0; transform:translate(-50%,100%); transition:transform .28s ease; }
.sheet-open .sheet-backdrop { opacity:1; pointer-events:auto; }.sheet-open .detail-sheet { transform:translate(-50%,0); }
.close-sheet { position:absolute; z-index:2; right:18px; top:10px; width:42px; height:42px; border:0; background:var(--paper); color:var(--deep); font-size:30px; line-height:1; cursor:pointer; border-radius:50%; }
.detail-kicker { color:var(--orange); font:600 12px 'Barlow Condensed'; letter-spacing:.15em; text-transform:uppercase; }.detail-sheet h2 { margin:4px 0 17px; color:var(--deep); font:700 42px/.9 'Barlow Condensed'; text-transform:uppercase; }.detail-sheet h3 { margin:20px 0 8px; color:var(--orange); font:600 20px 'Barlow Condensed'; text-transform:uppercase; }.detail-sheet p { color:#5e564c; font-size:13px; line-height:1.55; }.schedule { display:grid; gap:8px; }.schedule-row { display:grid; grid-template-columns:55px 1fr; gap:12px; padding:11px 0; border-bottom:1px solid #d7cfbf; }.schedule-row time { color:var(--orange); font:700 17px 'Barlow Condensed'; }.schedule-row strong { display:block; font:600 17px 'Barlow Condensed'; }.schedule-row span { color:#746b5e; font-size:11px; }
@media (min-width:600px) { body { padding:25px 0; }.app-shell { box-shadow:0 0 50px #0006; } }
