:root{
  --night:#01443D;
  --night-2:#06554C;
  --night-3:#0D6659;
  --gold:#CFA245;
  --gold-soft:#E4C782;
  --cream:#EFE3CC;
  --copper:#B7733D;

  --bg:#ECE2CF;
  --bg-2:#F6F0E4;
  --fg:#12261F;
  --fg-muted:#55645C;
  --line:rgba(18,38,31,.16);
  --accent-text:#7E5B1C;
  --focus:#1F6B52;
  --ph:#DCCFB6;

  --display:"Marcellus", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body:"Instrument Sans", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --wrap:1200px;
  --r-sm:10px;
  --r-lg:22px;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#02352F; --bg-2:#06554C; --fg:#EFE6D4; --fg-muted:#A8B7AE;
    --line:rgba(239,230,212,.14); --accent-text:#E3C27A; --focus:#E3C27A; --ph:#0D6659;
  }
}
:root[data-theme="dark"]{
  --bg:#02352F; --bg-2:#06554C; --fg:#EFE6D4; --fg-muted:#A8B7AE;
  --line:rgba(239,230,212,.14); --accent-text:#E3C27A; --focus:#E3C27A; --ph:#0D6659;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--fg);font-family:var(--body);font-size:17px;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit}
button,input,select,textarea{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--focus);outline-offset:3px;border-radius:4px}
.wrap{width:min(var(--wrap),100% - 40px);margin-inline:auto}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip{position:absolute;left:12px;top:-60px;background:var(--gold);color:var(--night);padding:10px 14px;border-radius:8px;z-index:100;text-decoration:none;font-weight:600}
.skip:focus{top:12px}
h1,h2,h3{font-family:var(--display);font-weight:400;line-height:1.08;margin:0;letter-spacing:-.005em}
p{margin:0}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:48px;padding:0 22px;border-radius:999px;border:1px solid transparent;text-decoration:none;font-weight:600;font-size:15.5px;cursor:pointer;transition:background-color .2s, color .2s, border-color .2s, transform .2s}
.btn:active{transform:scale(.98)}
.btn-gold{background:var(--gold);color:var(--night)}
.btn-gold:hover{background:var(--gold-soft)}
.btn-line{border-color:rgba(239,227,204,.45);color:var(--cream)}
.btn-line:hover{border-color:var(--cream);background:rgba(239,227,204,.08)}
.btn-dark{background:var(--night);color:var(--cream)}
.btn-dark:hover{background:var(--night-3)}
.btn-ghost{border-color:var(--line);color:var(--fg);background:transparent}
.btn-ghost:hover{border-color:var(--fg)}

/* ---------- header ---------- */
.site-head{position:fixed;inset:0 0 auto 0;z-index:40;color:var(--cream);transition:background-color .3s, box-shadow .3s}
.site-head.solid{background:rgba(1,68,61,.94);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);box-shadow:0 1px 0 rgba(239,227,204,.08)}
.head-in{display:flex;align-items:center;gap:24px;height:76px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit}
.brand img{display:block;height:30px;width:auto}
.brand small{display:block;font-size:11px;letter-spacing:.16em;text-transform:uppercase;opacity:.7;margin-top:5px}
.brand-stack{display:flex;flex-direction:column}
@media (max-width:560px){.brand img{height:23px}.brand small{font-size:9.5px;margin-top:4px}}
.nav{display:flex;gap:6px;margin-left:auto}
.nav a{padding:10px 14px;border-radius:999px;text-decoration:none;font-size:15.5px;opacity:.88}
.nav a:hover{opacity:1;background:rgba(239,227,204,.08)}
.head-cta{display:flex;align-items:center;gap:10px}
.head-cta .btn{min-height:42px;padding:0 18px;font-size:15px}
.menu-toggle{display:none;margin-left:auto;width:46px;height:46px;border-radius:50%;border:1px solid rgba(239,227,204,.3);background:transparent;cursor:pointer;align-items:center;justify-content:center}
.menu-toggle span,.menu-toggle span::before,.menu-toggle span::after{display:block;width:18px;height:1.6px;background:var(--cream);position:relative;content:"";transition:transform .25s}
.menu-toggle span::before{position:absolute;top:-6px}
.menu-toggle span::after{position:absolute;top:6px}
.menu-toggle[aria-expanded="true"] span{background:transparent}
.menu-toggle[aria-expanded="true"] span::before{transform:translateY(6px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span::after{transform:translateY(-6px) rotate(-45deg)}
.mobile-nav{display:none}
@media (max-width:900px){
  .nav,.head-cta{display:none}
  .menu-toggle{display:inline-flex}
  .mobile-nav{position:fixed;inset:76px 0 0 0;background:var(--night);z-index:39;padding:28px 20px;display:flex;flex-direction:column;gap:6px;transform:translateY(-8px);opacity:0;visibility:hidden;transition:opacity .25s, transform .25s, visibility .25s}
  .mobile-nav.open{opacity:1;transform:none;visibility:visible}
  .mobile-nav a:not(.btn){font-family:var(--display);font-size:34px;color:var(--cream);text-decoration:none;padding:8px 0;border-bottom:1px solid rgba(239,227,204,.1)}
  .mobile-nav .btn{margin-top:22px}
}

/* language switch */
.lang-btn{min-height:42px;padding:0 14px;border-radius:999px;border:1px solid rgba(239,227,204,.3);background:transparent;color:var(--cream);cursor:pointer;font-weight:600;font-size:14.5px}
.lang-btn:hover{border-color:var(--cream);background:rgba(239,227,204,.08)}
.lang-wrap{position:relative}
.lang-menu[hidden]{display:none}
.lang-menu{position:absolute;top:calc(100% + 8px);right:0;z-index:50;background:var(--night);border:1px solid rgba(239,227,204,.18);border-radius:14px;padding:6px;display:grid;gap:2px;min-width:160px;box-shadow:0 18px 40px rgba(0,0,0,.35)}
.lang-menu button{all:unset;box-sizing:border-box;display:block;width:100%;padding:10px 14px;border-radius:9px;color:var(--cream);font-size:15px;cursor:pointer}
.lang-menu button:hover,.lang-menu button:focus-visible{background:rgba(239,227,204,.12)}
.lang-menu button[aria-current="true"]{background:var(--gold);color:var(--night);font-weight:600}
.lang-menu-light{background:var(--bg-2);border-color:var(--line)}
.lang-menu-light button{color:var(--fg)}
.lang-menu-light button:hover{background:var(--bg)}
.lang-mobile{display:none;min-width:46px;height:46px;padding:0;margin-left:auto}
.lang-light{border-color:var(--line);color:var(--fg);min-width:44px;height:44px;padding:0}
.lang-light:hover{border-color:var(--fg);background:transparent}
@media (max-width:900px){.lang-mobile{display:block;margin-left:auto}.lang-mobile .lang-btn{min-width:46px;height:46px;padding:0;display:inline-flex;align-items:center;justify-content:center}.lang-mobile + .menu-toggle{margin-left:8px}}

/* ---------- hero ---------- */
.hero{position:relative;min-height:100vh;background:linear-gradient(180deg,#012C27 0%,#01443D 60%,#0A5F53 100%);color:var(--cream);overflow:hidden;display:flex;flex-direction:column}
@supports (min-height:100svh){.hero{min-height:100svh}}
.hero-art{position:absolute;inset:0;width:100%;height:100%}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(1,44,39,.62) 0%,rgba(1,44,39,0) 55%);pointer-events:none;z-index:1}
.hero-glow{position:absolute;inset:auto 0 0 0;height:60%;background:radial-gradient(70% 60% at 62% 100%, rgba(210,168,78,.22), transparent 70%);pointer-events:none}
.hero-copy{position:relative;z-index:2;padding-top:clamp(120px,19vh,190px);padding-bottom:40px}
.hero h1{font-size:clamp(38px,5.4vw,76px);max-width:17ch;line-height:1.02;text-wrap:balance}
.hero-lead{max-width:44ch;margin-top:26px;font-size:clamp(17px,1.5vw,19.5px);color:rgba(239,227,204,.84)}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}
.open-pill{display:inline-flex;align-items:center;gap:10px;margin-bottom:26px;padding:7px 14px 7px 10px;border-radius:999px;background:rgba(239,227,204,.08);border:1px solid rgba(239,227,204,.14);font-size:14.5px}
.open-pill i{width:9px;height:9px;border-radius:50%;background:#7FC79E;box-shadow:0 0 0 4px rgba(127,199,158,.18)}
.open-pill.closed i{background:#C98B6B;box-shadow:0 0 0 4px rgba(201,139,107,.18)}
.hero-copy > *{animation:heroIn .9s cubic-bezier(.2,.7,.2,1) both}
.hero-copy > *:nth-child(2){animation-delay:.08s}
.hero-copy > *:nth-child(3){animation-delay:.16s}
.hero-copy > *:nth-child(4){animation-delay:.24s}
@keyframes heroIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.balloon-inner{transform-box:fill-box;transform-origin:50% 50%;animation:rise 3.2s cubic-bezier(.16,.8,.24,1) var(--delay) both, bob var(--dur) ease-in-out calc(var(--delay) + 3.2s) infinite alternate}
@keyframes rise{from{transform:translateY(260px);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes bob{from{transform:translateY(0)}to{transform:translateY(-22px)}}
.window-lit{animation:flicker 1.6s ease-out var(--wd) both}
@keyframes flicker{0%{opacity:0}60%{opacity:.4}100%{opacity:1}}
@media (max-width:700px){
  .hero{min-height:0}
  .hero::after{display:none}
  .hero-copy{padding-top:118px;padding-bottom:0}
  .hero-art{position:relative;inset:auto;height:auto;aspect-ratio:880/730;margin-top:-8px;order:2}
  .hero-glow{height:40%}
  .hero-foot{order:3;margin-top:0;padding-top:4px}
}
.hero-foot{position:relative;z-index:2;margin-top:auto;padding-bottom:28px;display:flex;justify-content:space-between;align-items:end;gap:20px;font-size:14.5px;color:rgba(239,227,204,.72)}
.hero-foot a{text-decoration:none}
.hero-foot a:hover{color:var(--cream)}

/* hero photo variant */
.hero-photo{position:absolute;inset:0}
.hero-photo img{width:100%;height:100%;object-fit:cover}
.hero-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(1,44,39,.92) 0%,rgba(1,44,39,.74) 40%,rgba(1,44,39,.28) 70%,rgba(1,44,39,.5) 100%)}
.hero-tag{margin-top:16px;font-family:var(--display);font-size:clamp(18px,1.9vw,23px);color:var(--gold-soft)}
.trust{margin-top:22px;font-size:15px;color:rgba(239,227,204,.82)}
.trust a{color:var(--gold-soft);text-underline-offset:4px}
:root.hero-is-photo .hero{min-height:90vh}
:root.hero-is-photo .hero-glow{display:none}
:root.hero-is-photo .hero-copy{padding-top:clamp(110px,16vh,170px)}
@media (max-width:700px){
  :root.hero-is-photo .hero{min-height:0}
  :root.hero-is-photo .hero-photo{position:relative;inset:auto;order:1;aspect-ratio:auto;height:auto;margin-top:70px}
  :root.hero-is-photo .hero-photo img{aspect-ratio:3/2;height:auto}
  :root.hero-is-photo .hero-copy{order:2;padding-top:20px;padding-bottom:6px}
  :root.hero-is-photo .hero-foot{order:3;padding-top:14px}
  :root.hero-is-photo .hero h1{font-size:clamp(30px,8.6vw,38px);max-width:22ch}
  :root.hero-is-photo .hero-tag{margin-top:10px;font-size:17px}
  :root.hero-is-photo .hero-lead{margin-top:12px;font-size:15px}
  :root.hero-is-photo .hero-actions{margin-top:20px;gap:10px}
  :root.hero-is-photo .hero-actions .btn{flex:1;min-width:140px}
  :root.hero-is-photo .hero-photo::after{background:linear-gradient(180deg,rgba(1,44,39,.3),rgba(1,44,39,0) 40%)}
  :root.hero-is-photo .hero-copy{padding-top:104px;padding-bottom:0}
}

/* categories */
.sec-cats{padding:clamp(54px,7vw,84px) 0 0}
.cats-title{font-size:clamp(26px,3vw,36px);margin-bottom:26px}
.cat-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(14px,2vw,22px)}
@media (max-width:820px){.cat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
.cat-card{text-decoration:none;color:inherit;display:block}
.cat-media{display:block;aspect-ratio:4/3;border-radius:var(--r-lg);overflow:hidden;background:var(--ph)}
.cat-media img,.cat-media .ph{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.cat-card:hover .cat-media img{transform:scale(1.04)}
.cat-name{display:block;margin-top:12px;font-family:var(--display);font-size:clamp(18px,1.7vw,22px);line-height:1.25}

/* reservation helper text */
.res-rules{margin-top:18px;font-size:15px;color:rgba(239,227,204,.66);max-width:46ch}

/* footer quick links */
.foot-links{display:flex;flex-wrap:wrap;gap:8px 22px;margin-top:28px;font-size:15px}
.foot-links a{color:rgba(239,227,204,.78);text-decoration:none}
.foot-links a:hover{color:var(--cream);text-decoration:underline;text-underline-offset:4px}

/* mobile action bar */
.action-bar{display:none}
@media (max-width:700px){
  .action-bar{display:flex;gap:10px;position:fixed;left:0;right:0;bottom:0;z-index:35;padding:10px 16px calc(10px + env(safe-area-inset-bottom));background:color-mix(in srgb, var(--bg) 94%, transparent);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-top:1px solid var(--line)}
  .action-bar .btn{flex:1;min-height:46px;padding:0 12px}
  #view-home{padding-bottom:80px}
}

/* ---------- sections ---------- */
section{position:relative}
.sec{padding:clamp(80px,11vw,140px) 0}
.sec-night{background:var(--night);color:var(--cream)}
.sec-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:40px;align-items:end;margin-bottom:clamp(40px,6vw,72px)}
.sec-head h2{font-size:clamp(38px,5.4vw,70px);max-width:14ch;text-wrap:balance}
.sec-head p{max-width:46ch;color:var(--fg-muted);justify-self:end}
.sec-night .sec-head p{color:rgba(239,227,204,.74)}
@media (max-width:820px){.sec-head{grid-template-columns:1fr;gap:18px}.sec-head p{justify-self:start}}

/* image + fallback */
.ph{background:var(--ph);display:grid;place-items:center;text-align:center;color:var(--fg-muted);padding:16px;position:relative;overflow:hidden}
.sec-night .ph,.night-ph .ph{background:var(--night-3);color:rgba(239,227,204,.6)}
.ph > div{width:100%}
.ph span{display:block;font-family:var(--display);font-size:clamp(14px,1.4vw,18px);line-height:1.25;letter-spacing:.01em;padding:0 10px}
.ph i{font-family:var(--display);font-style:normal;font-size:clamp(22px,2.4vw,34px);opacity:.35}
.ph-blank{background:var(--ph)}
.ph span{display:block;font-family:var(--display);font-size:15px;margin-top:8px;line-height:1.2}

/* ---------- day timeline ---------- */
.day{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(18px,2.4vw,32px);position:relative}
.day::before{content:"";position:absolute;left:0;right:0;top:25px;height:1px;background:var(--line)}
.dp{position:relative}
.dp-time{display:flex;align-items:center;gap:12px;height:50px;margin-bottom:22px;font-weight:600;font-size:15px}
.dp-time svg{width:50px;height:50px;flex:none;background:var(--bg);border-radius:50%;border:1px solid var(--line);padding:12px;color:var(--accent-text)}
.dp-media{aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;background:var(--ph)}
.dp-media img,.dp-media .ph{width:100%;height:100%;object-fit:cover}
.dp h3{font-size:clamp(28px,2.6vw,36px);margin:26px 0 10px}
.dp > p{color:var(--fg-muted);max-width:36ch}
.dp ul{list-style:none;margin:22px 0 0;padding:0;border-top:1px solid var(--line)}
.dp li{display:flex;justify-content:space-between;gap:16px;padding:12px 0;border-bottom:1px solid var(--line);font-size:16px}
.dp li b{font-weight:500}
.dp li span{color:var(--accent-text);font-variant-numeric:tabular-nums}
.dp .more{display:inline-block;margin-top:18px;font-weight:600;text-underline-offset:5px}
@media (max-width:900px){
  .day{grid-template-columns:1fr;gap:56px}
  .day::before{left:25px;right:auto;top:0;bottom:0;width:1px;height:auto}
  .dp{padding-left:0}
  .dp-media{aspect-ratio:5/4}
}

/* ---------- house breakfast ---------- */
.table{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:clamp(32px,6vw,90px);align-items:center}
.table-media{border-radius:var(--r-lg);overflow:hidden;aspect-ratio:1/1;background:var(--night-3)}
.table-media img,.table-media .ph{width:100%;height:100%;object-fit:cover}
.table h2{font-size:clamp(40px,5.2vw,68px);max-width:10ch}
.table-lead{margin-top:22px;color:rgba(239,227,204,.78);max-width:44ch}
.spread{margin:26px 0 0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:8px}
.spread li{font-size:14.5px;padding:6px 12px;border-radius:999px;border:1px solid rgba(239,227,204,.18);color:rgba(239,227,204,.86)}
.party{margin-top:36px;padding:24px;border-radius:var(--r-lg);background:var(--night-2);border:1px solid rgba(239,227,204,.1)}
.party-row{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.stepper{display:flex;align-items:center;gap:6px;background:rgba(0,0,0,.18);border-radius:999px;padding:5px}
.stepper button{width:40px;height:40px;border-radius:50%;border:0;background:rgba(239,227,204,.1);color:var(--cream);font-size:22px;line-height:1;cursor:pointer}
.stepper button:hover:not(:disabled){background:rgba(239,227,204,.2)}
.stepper button:disabled{opacity:.35;cursor:not-allowed}
.stepper output{min-width:92px;text-align:center;font-weight:600}
.party-price{font-family:var(--display);font-size:46px;line-height:1;color:var(--gold-soft);font-variant-numeric:tabular-nums}
.party-note{font-size:14.5px;color:rgba(239,227,204,.66);margin-top:12px}
.party .btn{margin-top:20px;width:100%}
@media (max-width:900px){.table{grid-template-columns:1fr}.table-media{aspect-ratio:4/3}}

/* order online */
.order-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,320px));gap:clamp(14px,1.6vw,20px);margin-top:28px}
.order-card{position:relative;display:flex;flex-direction:column;gap:4px;padding:26px 56px 26px 26px;border-radius:var(--r-lg);background:var(--bg-2);border:1px solid var(--line);text-decoration:none;color:inherit;transition:border-color .2s,transform .2s,box-shadow .2s;overflow:hidden}
.order-card::before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:var(--gold)}
.order-card.order-ue::before{background:#06C167}
.order-card.order-dd::before{background:#EB1700}
.order-card::after{content:"→";position:absolute;right:24px;top:50%;transform:translateY(-50%);font-size:20px;color:var(--fg-muted);transition:transform .2s,color .2s}
.order-card:hover{border-color:var(--fg);transform:translateY(-2px);box-shadow:0 14px 30px rgba(1,44,39,.1)}
.order-card:hover::after{transform:translate(4px,-50%);color:var(--fg)}
.order-card b{font-family:var(--display);font-weight:400;font-size:clamp(20px,2vw,24px);line-height:1.2}
.order-card span{font-size:14px;color:var(--fg-muted);letter-spacing:.02em}
.order-note{margin-top:24px;font-size:15px;color:var(--fg-muted)}
@media (max-width:640px){.order-grid{grid-template-columns:1fr}}

/* halal */
.halal-sec{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:clamp(30px,5vw,72px);align-items:center}
.halal-sec h2{font-size:clamp(30px,4vw,50px);max-width:22ch;margin-top:18px}
.halal-sec p{margin-top:18px;color:rgba(239,227,204,.82);max-width:54ch}
.halal-note{font-size:15px;color:rgba(239,227,204,.62)}
.halal-badge{display:inline-flex;align-items:center;gap:8px;font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-soft)}
.halal-badge svg{width:17px;height:17px}
.halal-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.halal-list li{padding:18px 22px;border-radius:16px;background:var(--night-2);border:1px solid rgba(239,227,204,.1);font-size:16px}
.halal-list li::before{content:"✓";color:var(--gold);margin-right:10px;font-weight:700}
@media (max-width:900px){.halal-sec{grid-template-columns:1fr;gap:26px}}

/* sweets / SEO block */
.sweets{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:clamp(32px,5vw,80px);align-items:center}
.sweets h2{font-size:clamp(32px,4.4vw,56px);max-width:20ch}
.sweets-lead{margin-top:20px;color:rgba(239,227,204,.8);max-width:52ch}
.sweets-list{list-style:none;padding:0;margin:24px 0 0;display:flex;flex-wrap:wrap;gap:8px}
.sweets-list li{font-size:14.5px;padding:7px 13px;border-radius:999px;border:1px solid rgba(239,227,204,.2);color:rgba(239,227,204,.88)}
.sweets-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}
.sweets-stats{display:grid;gap:18px}
.sweets-stats .stat{padding:24px;border-radius:var(--r-lg);background:var(--night-2);border:1px solid rgba(239,227,204,.1)}
.sweets-stats b{display:block;font-family:var(--display);font-weight:400;font-size:clamp(38px,4.6vw,60px);line-height:1;color:var(--gold-soft)}
.sweets-stats span{display:block;margin-top:10px;font-size:15.5px;color:rgba(239,227,204,.78)}
.sweets-note{font-size:15px;color:rgba(239,227,204,.7)}
@media (max-width:900px){.sweets{grid-template-columns:1fr;gap:30px}}

/* ---------- pastry case ---------- */
.case-wrap{position:relative}
.case{display:grid;grid-auto-flow:column;grid-auto-columns:clamp(230px,24vw,290px);gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 20px 26px;margin:0 -20px;scrollbar-width:thin;scrollbar-color:var(--line) transparent;overscroll-behavior-x:contain;scroll-padding-inline:20px}
.case > *{scroll-snap-align:start}
.cake{text-decoration:none;color:inherit;display:flex;flex-direction:column;justify-content:flex-start;align-self:start;font:inherit;cursor:pointer;background:none;border:0;padding:0;text-align:left}
.cake-plain{aspect-ratio:1/1;border-radius:var(--r-lg);overflow:hidden;background:var(--ph);align-self:start}
.cake-plain img{width:100%;height:100%;object-fit:cover}
.cake-media{aspect-ratio:1/1;border-radius:var(--r-lg);overflow:hidden;background:var(--ph)}
.cake-media img,.cake-media .ph{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.cake:hover .cake-media img{transform:scale(1.04)}
.cake-row{display:flex;justify-content:space-between;gap:12px;margin-top:14px;align-items:baseline}
.cake-row b{font-family:var(--display);font-weight:400;font-size:21px;line-height:1.2}
.cake-row span{color:var(--accent-text);font-variant-numeric:tabular-nums;white-space:nowrap}
.cake small{display:block;color:var(--fg-muted);font-size:14.5px;margin-top:2px}
.case-nav{display:flex;gap:8px}
.case-nav button{width:48px;height:48px;border-radius:50%;border:1px solid var(--line);background:transparent;cursor:pointer;display:grid;place-items:center}
.case-nav button:hover{border-color:var(--fg)}
.case-nav svg{width:18px;height:18px}
.case-side{justify-self:end;display:flex;flex-direction:column;align-items:flex-end;gap:18px}
.case-side p{max-width:46ch;color:var(--fg-muted)}
@media (max-width:820px){.case-side{justify-self:start;align-items:flex-start}}
.custom{margin-top:clamp(48px,7vw,80px);display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:clamp(20px,4vw,48px);align-items:center;padding:clamp(24px,4vw,40px);border-radius:var(--r-lg);background:var(--bg-2);border:1px solid var(--line)}
.custom svg{width:64px;height:64px;color:var(--accent-text)}
.custom h3{font-size:clamp(28px,3vw,38px)}
.custom p{color:var(--fg-muted);margin-top:8px;max-width:52ch}
.custom-actions{display:flex;gap:10px;flex-wrap:wrap}
@media (max-width:820px){.custom{grid-template-columns:1fr}.custom svg{width:48px;height:48px}}

.marquee{margin-top:clamp(22px,3vw,34px);display:grid;gap:clamp(10px,1.4vw,16px)}
.marquee-row{overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent)}
.marquee-inner{display:flex;gap:clamp(10px,1.4vw,16px);width:max-content;animation:marq 78s linear infinite}
.marquee-row.reverse .marquee-inner{animation-duration:96s;animation-direction:reverse}
.marquee-row:hover .marquee-inner,.marquee-row:focus-within .marquee-inner{animation-play-state:paused}
@keyframes marq{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marq-tile{flex:none;width:clamp(116px,11vw,158px);aspect-ratio:9/16;border-radius:14px;overflow:hidden;background:var(--night-3)}
.marq-tile img,.marq-tile .ph{width:100%;height:100%;object-fit:cover}
.marquee.no-motion .marquee-row{overflow-x:auto}
.marquee.no-motion .marquee-inner{animation:none}

.carousel{position:relative;margin-top:clamp(20px,3vw,30px)}
.carousel-track{display:grid;grid-auto-flow:column;grid-auto-columns:clamp(240px,26vw,320px);gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-padding-inline:0;padding:4px 0 18px;scrollbar-width:thin;scrollbar-color:var(--line) transparent;overscroll-behavior-x:contain}
.carousel-track:focus-visible{outline:2px solid var(--focus);outline-offset:4px;border-radius:12px}
.slide{margin:0;scroll-snap-align:start}
.slide-media{display:block;aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;background:var(--ph)}
.slide-media img,.slide-media .ph,.slide-plain img{width:100%;height:100%;object-fit:cover}
.slide-plain{aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;background:var(--ph)}
.slide figcaption{display:block;margin-top:12px}
.slide figcaption b{display:block;font-family:var(--display);font-weight:400;font-size:20px;line-height:1.2}
.slide figcaption em{display:block;font-style:normal;font-size:13.5px;color:var(--fg-muted);margin-top:2px}
.slide figcaption span{display:block;margin-top:5px;font-size:14.5px;color:var(--fg-muted)}
.guest-track{grid-auto-columns:clamp(220px,24vw,300px)}
.guest-card{aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;background:var(--ph)}
.guest-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.guest-card:hover img{transform:scale(1.03)}

.ig-side{justify-self:end;display:flex;flex-direction:column;align-items:flex-end;gap:18px}
.ig-side p{max-width:44ch;color:rgba(239,227,204,.74)}
.ig-side .btn svg{width:18px;height:18px}
.row-label{font-family:var(--display);font-weight:400;font-size:19px;letter-spacing:.02em;margin:26px 0 2px;color:rgba(239,227,204,.72)}
.story-track{grid-auto-columns:clamp(132px,13vw,168px)}
.story-card{text-decoration:none;display:block}
.story-media{display:block;aspect-ratio:9/16;border-radius:16px;overflow:hidden;background:var(--night-3)}
.story-media img,.story-media .ph{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.story-card:hover .story-media img{transform:scale(1.04)}
.ig-track{grid-auto-columns:clamp(210px,22vw,270px)}
.ig-card{text-decoration:none;color:inherit;display:block}
.ig-media{display:block;aspect-ratio:1/1;border-radius:var(--r-lg);overflow:hidden;background:var(--night-3)}
.ig-media img,.ig-media .ph{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.ig-card:hover .ig-media img{transform:scale(1.04)}
.ig-cap{display:block;margin-top:11px;font-size:14.5px;color:rgba(239,227,204,.78)}
@media (max-width:820px){.ig-side{justify-self:start;align-items:flex-start}}
.carousel-nav{display:flex;gap:8px;justify-content:flex-end;margin-top:4px}
.carousel-nav button{width:48px;height:48px;border-radius:50%;border:1px solid var(--line);background:transparent;cursor:pointer;display:grid;place-items:center;color:inherit}
.carousel-nav button:hover{border-color:var(--fg)}
.carousel-nav svg{width:18px;height:18px}

/* ---------- reservation ---------- */
.res{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:clamp(36px,6vw,90px)}
.res h2{font-size:clamp(40px,5.2vw,68px);max-width:9ch}
.res-lead{margin-top:20px;color:rgba(239,227,204,.76);max-width:40ch}
.rules{list-style:none;padding:0;margin:34px 0 0;display:grid;gap:14px}
.rules li{display:grid;grid-template-columns:44px 1fr;gap:14px;align-items:start;color:rgba(239,227,204,.86)}
.rules svg{width:44px;height:44px;padding:11px;border-radius:50%;background:var(--night-2);color:var(--gold)}
.rules b{display:block;color:var(--cream);font-weight:600}
.res-call{margin-top:34px;font-size:15.5px;color:rgba(239,227,204,.7)}
.res-call a{color:var(--gold-soft);font-weight:600;text-underline-offset:4px}

.form{background:var(--bg-2);color:var(--fg);border-radius:var(--r-lg);padding:clamp(22px,3.4vw,40px)}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:7px;margin-bottom:18px}
.field label,.field legend{font-size:14.5px;font-weight:600}
.field .opt{font-weight:400;color:var(--fg-muted)}
.input{width:100%;min-height:50px;padding:12px 14px;border-radius:var(--r-sm);border:1px solid var(--line);background:var(--bg);font-size:16px;transition:border-color .2s}
.input:hover{border-color:color-mix(in srgb, var(--fg) 40%, transparent)}
.input:focus{outline:none;border-color:var(--focus);box-shadow:0 0 0 3px color-mix(in srgb, var(--focus) 22%, transparent)}
textarea.input{min-height:96px;resize:vertical}
select.input{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2355645C' stroke-width='1.6'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:38px}
.field.err .input{border-color:#B3452F}
.msg{font-size:14px;color:#A33D2A;display:none}
:root[data-theme="dark"] .msg{color:#F0A08C}
@media (prefers-color-scheme: dark){:root:not([data-theme="light"]) .msg{color:#F0A08C}}
.field.err .msg{display:block}
.hint{font-size:14px;color:var(--fg-muted)}
fieldset.field{border:0;padding:0;margin:0 0 18px}
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip-radio input{position:absolute;opacity:0;pointer-events:none}
.chip-radio span{display:inline-flex;align-items:center;min-height:42px;padding:0 16px;border-radius:999px;border:1px solid var(--line);cursor:pointer;font-size:15px;transition:background-color .2s,border-color .2s,color .2s}
.chip-radio input:checked + span{background:var(--night);border-color:var(--night);color:var(--cream)}
.chip-radio input:focus-visible + span{outline:2px solid var(--focus);outline-offset:2px}
.form-foot{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:6px}
.form-foot .btn{min-width:220px}
.form-foot .hint{max-width:30ch}
.btn[aria-busy="true"]{opacity:.7;pointer-events:none}
.done{text-align:center;padding:30px 10px}
.done svg{width:64px;height:64px;margin:0 auto 18px;color:var(--accent-text)}
.done h3{font-size:34px}
.done p{color:var(--fg-muted);margin:12px auto 0;max-width:42ch}
.done .summary{margin:24px auto 0;max-width:380px;text-align:left;border-top:1px solid var(--line)}
.done .summary div{display:flex;justify-content:space-between;gap:16px;padding:10px 0;border-bottom:1px solid var(--line);font-size:15.5px}
.done .summary dt{color:var(--fg-muted)}
.done .summary dd{margin:0;font-weight:600;text-align:right}
.done .btns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:24px}
@media (max-width:900px){.res{grid-template-columns:1fr}}
@media (max-width:520px){.grid2{grid-template-columns:1fr;gap:0}.form-foot .btn{width:100%}}

/* ---------- story ---------- */
.story{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);gap:clamp(32px,5vw,80px);align-items:center}
.story-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(10px,1.2vw,14px)}
.story-tile{aspect-ratio:1/1;border-radius:14px;overflow:hidden;background:var(--ph)}
.story-tile:first-child{grid-column:span 2;grid-row:span 2;aspect-ratio:1/1;border-radius:var(--r-lg)}
.story-tile img{width:100%;height:100%;object-fit:cover}
.story h2{font-size:clamp(34px,4.4vw,56px);max-width:15ch}
.story p{margin-top:18px;color:var(--fg-muted);max-width:50ch;font-size:17px}
@media (max-width:900px){
  .story{grid-template-columns:1fr;gap:28px}
  .story-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

/* ---------- visit / footer ---------- */
.visit{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:clamp(36px,6vw,90px)}
.visit h2{font-size:clamp(40px,5.2vw,68px);max-width:11ch}
.addr{font-size:clamp(21px,2.2vw,26px);font-family:var(--display);margin-top:22px;line-height:1.3}
.visit-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}
.contact{margin-top:36px;display:grid;gap:4px;color:rgba(239,227,204,.8)}
.contact a{text-decoration:none;width:max-content}
.contact a:hover{color:var(--cream);text-decoration:underline;text-underline-offset:4px}
.hours{list-style:none;margin:0;padding:0;border-top:1px solid rgba(239,227,204,.14)}
.hours li{display:flex;justify-content:space-between;gap:16px;padding:14px 4px;border-bottom:1px solid rgba(239,227,204,.14);color:rgba(239,227,204,.78);font-variant-numeric:tabular-nums}
.hours li.today{color:var(--cream);font-weight:600}
.hours li.today span:first-child::after{content:attr(data-today);margin-left:10px;font-size:12.5px;font-weight:600;color:var(--night);background:var(--gold);padding:2px 8px;border-radius:999px;vertical-align:2px}
.hours-note{margin-top:16px;font-size:14.5px;color:rgba(239,227,204,.62)}
.foot-logo{display:block;width:min(190px,38vw);height:auto;margin:0 auto 6px}
.m-foot-logo{width:140px;height:auto;display:block;margin-bottom:12px}
.foot{border-top:1px solid rgba(239,227,204,.12);margin-top:clamp(64px,9vw,110px);padding-top:28px;display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;align-items:center;font-size:14.5px;color:rgba(239,227,204,.6)}
.socials{display:flex;gap:8px}
.socials a{width:44px;height:44px;border-radius:50%;border:1px solid rgba(239,227,204,.2);display:grid;place-items:center;color:var(--cream)}
.socials a:hover{background:rgba(239,227,204,.1)}
.socials svg{width:18px;height:18px}
.halal{display:inline-flex;align-items:center;gap:6px}
@media (max-width:900px){.visit{grid-template-columns:1fr}}

/* =====================================================
   MENU VIEW (QR)
   ===================================================== */
.m-head{position:sticky;top:0;z-index:30;background:color-mix(in srgb, var(--bg) 97%, transparent);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}
.m-top{display:flex;align-items:center;gap:12px;height:64px}
.m-top .brand{color:var(--fg)}
.m-top .brand img{height:23px}
.brand img.brand-on-light{display:block}
.brand img.brand-on-dark{display:none}
@media (prefers-color-scheme: dark){:root:not([data-theme="light"]) .brand img.brand-on-light{display:none}:root:not([data-theme="light"]) .brand img.brand-on-dark{display:block}}
:root[data-theme="dark"] .brand img.brand-on-light{display:none}
:root[data-theme="dark"] .brand img.brand-on-dark{display:block}
.m-actions{margin-left:auto;display:flex;gap:8px}
.icon-btn{width:44px;height:44px;border-radius:50%;border:1px solid var(--line);background:transparent;display:grid;place-items:center;cursor:pointer;color:var(--fg);text-decoration:none}
.icon-btn:hover{border-color:var(--fg)}
.icon-btn svg{width:18px;height:18px}
.m-search{display:none;padding-bottom:12px}
.m-search.open{display:block}
.m-search .input{min-height:46px;padding-left:42px;background:var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%2355645C' stroke-width='1.8'%3E%3Ccircle cx='8' cy='8' r='6'/%3E%3Cpath d='M12.5 12.5L17 17'/%3E%3C/svg%3E") no-repeat 14px center}
.m-cats{display:flex;gap:6px;overflow-x:auto;padding:0 20px 12px;margin:0 -20px;scrollbar-width:none;scroll-behavior:smooth}
.m-cats::-webkit-scrollbar{display:none}
.m-cats a{flex:none;display:inline-flex;align-items:center;min-height:38px;padding:0 14px;border-radius:999px;text-decoration:none;font-size:15px;color:var(--fg-muted);border:1px solid transparent;white-space:nowrap}
.m-cats a:hover{color:var(--fg)}
.m-cats a.on{background:var(--night);color:var(--cream)}
:root[data-theme="dark"] .m-cats a.on{background:var(--gold);color:var(--night)}
@media (prefers-color-scheme: dark){:root:not([data-theme="light"]) .m-cats a.on{background:var(--gold);color:var(--night)}}

/* arch echoes the logo mark */
.m-hero{margin:20px 0 0;aspect-ratio:21/9;border-radius:clamp(90px,22vw,260px) clamp(90px,22vw,260px) 18px 18px;overflow:hidden;background:var(--ph)}
.m-hero img{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:640px){.m-hero{aspect-ratio:4/3;margin:14px 0 0;border-radius:140px 140px 16px 16px}}
.m-intro{padding:30px 0 6px}
.m-intro h1{font-size:clamp(40px,7vw,64px)}
.m-intro p{color:var(--fg-muted);margin-top:10px;max-width:52ch}
.m-notes{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.m-notes span{font-size:14px;padding:6px 12px;border-radius:999px;background:var(--bg-2);border:1px solid var(--line);color:var(--fg-muted)}
.m-count{padding:18px 0 0;color:var(--fg-muted);font-size:15px;min-height:1px}
.m-cat{padding-top:40px;scroll-margin-top:130px}
.m-cat-h{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;padding-bottom:14px;border-bottom:1px solid var(--fg)}
.m-cat-h h2{font-size:clamp(30px,4.2vw,42px)}
.m-cat-h .tr{color:var(--fg-muted);font-size:16px}
.m-cat-h .note{margin-left:auto;font-size:14px;color:var(--accent-text);font-weight:600}
.m-banner{margin:18px 0 4px;aspect-ratio:21/8;border-radius:18px;overflow:hidden;background:var(--ph)}
.m-banner img{width:100%;height:100%;object-fit:cover;display:block}
@media (max-width:640px){.m-banner{aspect-ratio:2/1;border-radius:14px}}
.m-cat-intro{color:var(--fg-muted);max-width:62ch;margin:16px 0 0}
.m-group{font-family:var(--display);font-size:22px;margin:26px 0 2px;color:var(--fg-muted)}
.m-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;column-gap:40px}
@media (max-width:760px){.m-list{grid-template-columns:1fr}}
.dish{border-bottom:1px solid var(--line)}
.dish button{all:unset;box-sizing:border-box;display:grid;grid-template-columns:76px minmax(0,1fr) auto;gap:14px;align-items:start;width:100%;padding:16px 0;cursor:pointer;border-radius:8px}
.dish button:focus-visible{outline:2px solid var(--focus);outline-offset:2px}
.dish.noimg button{grid-template-columns:minmax(0,1fr) auto}
.thumb{width:76px;height:76px;border-radius:12px;overflow:hidden;background:var(--ph)}
.thumb img,.thumb .ph{width:100%;height:100%;object-fit:cover}
.thumb .ph{padding:0}
.thumb .ph svg{width:44%}
.thumb .ph span{display:none}
.dish-n{font-weight:600;font-size:16.5px;line-height:1.3}
.dish-t{display:block;font-size:14px;color:var(--fg-muted);font-weight:400;margin-top:1px}
.dish-d{font-size:14.5px;color:var(--fg-muted);margin-top:5px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.45}
.dish-p{font-variant-numeric:tabular-nums;font-weight:600;color:var(--accent-text);white-space:nowrap;font-size:16px}
.badge{display:inline-block;font-size:12px;font-weight:600;padding:1px 8px;border-radius:999px;background:var(--gold);color:var(--night);margin-left:6px;vertical-align:2px}
.m-empty{padding:60px 0;text-align:center;color:var(--fg-muted);display:none}
.m-empty b{display:block;font-family:var(--display);font-weight:400;font-size:28px;color:var(--fg);margin-bottom:6px}
.m-foot{margin-top:70px;padding:44px 0 calc(44px + env(safe-area-inset-bottom));background:var(--night);color:var(--cream)}
.m-foot .wrap{display:flex;flex-wrap:wrap;gap:24px;justify-content:space-between;align-items:center}
.m-foot p{color:rgba(239,227,204,.72);font-size:15px}
.m-foot b{font-family:var(--display);font-weight:400;font-size:26px;display:block;color:var(--cream);margin-bottom:4px}

/* dish sheet */
dialog.sheet{border:0;padding:0;margin:auto auto 0;width:100%;max-width:560px;max-height:92vh;border-radius:24px 24px 0 0;background:var(--bg-2);color:var(--fg);overflow:auto}
@media (min-width:640px){dialog.sheet{margin:auto;border-radius:24px}}
dialog.sheet::backdrop{background:rgba(6,20,16,.62)}
dialog.sheet[open]{animation:sheetUp .3s cubic-bezier(.2,.8,.2,1)}
@keyframes sheetUp{from{transform:translateY(40px);opacity:.4}to{transform:none;opacity:1}}
.sheet-media{aspect-ratio:4/3;background:var(--ph)}
.sheet-media img,.sheet-media .ph{width:100%;height:100%;object-fit:cover}
.sheet-body{padding:24px 24px calc(28px + env(safe-area-inset-bottom))}
.sheet-body h3{font-size:32px}
.sheet-body .dish-t{font-size:15.5px;margin-top:4px}
.sheet-body p{margin-top:14px;color:var(--fg-muted)}
.sheet-body .served{font-size:15px;margin-top:10px;color:var(--accent-text)}
.sheet-price{display:flex;justify-content:space-between;align-items:center;margin-top:20px;padding-top:18px;border-top:1px solid var(--line)}
.sheet-price b{font-family:var(--display);font-weight:400;font-size:34px;color:var(--accent-text)}
.sheet-price small{color:var(--fg-muted)}
.opts{list-style:none;margin:16px 0 0;padding:0;border-top:1px solid var(--line)}
.opts li{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px solid var(--line);font-variant-numeric:tabular-nums}
.cake-dlg .sheet-body{padding-top:34px}
.cake-dlg form{margin-top:24px}
.cake-dlg .input{background:var(--bg)}
.cake-ico{width:52px;height:52px;color:var(--accent-text);margin-bottom:12px}
.cake-dlg h3{font-size:34px}
.cake-dlg #ckLead{margin-top:10px;color:var(--fg-muted)}
.cake-dlg .done{padding:10px 0}
.sheet-close{position:sticky;top:12px;float:right;margin:12px 12px -56px 0;z-index:2;background:rgba(11,38,32,.7);color:var(--cream);border:0}
.sheet-close:hover{background:var(--night)}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms !important;animation-delay:0s !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}
