/* =============================================================================
   Layali Café — Premium mobile-first UI
   ----------------------------------------------------------------------------
   1. Design tokens          5. Layout shell (topbar / drawer / tabbar)
   2. Reset & base           6. Sections (hero, features, menu, gallery…)
   3. Ambient background     7. Forms
   4. Components             8. Animations & responsive
   ========================================================================== */

/* 1. ──────────────────────────── Design tokens ─────────────────────────── */
:root {
  /* surfaces */
  --bg:            #0c0d10;
  --bg-2:          #121318;
  --bg-3:          #16171d;

  /* gold */
  --gold:          #d9b16f;
  --gold-soft:     #e7c98f;
  --gold-bright:   #f4d99a;
  --gold-deep:     #b8893f;
  --gold-line:     rgba(217, 177, 111, .22);
  --gold-glow:     rgba(217, 177, 111, .35);

  /* text */
  --cream:         #f3ece0;
  --cream-dim:     #cfc6b8;
  --muted:         #9b9384;
  --muted-2:       #6f6a60;

  /* glass */
  --glass:         linear-gradient(155deg, rgba(42, 40, 47, .58), rgba(18, 18, 23, .42));
  --glass-2:       linear-gradient(155deg, rgba(34, 33, 39, .72), rgba(15, 15, 19, .62));
  --glass-border:  rgba(217, 177, 111, .16);
  --glass-blur:    saturate(135%) blur(22px);

  /* radii */
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* shadows */
  --sh-sm:  0 6px 18px rgba(0, 0, 0, .35);
  --sh:     0 16px 40px rgba(0, 0, 0, .45);
  --sh-lg:  0 28px 70px rgba(0, 0, 0, .55);
  --sh-gold: 0 10px 34px rgba(217, 177, 111, .28);

  /* spacing */
  --pad: 20px;
  --gap: 16px;

  /* chrome heights */
  --topbar-h: 64px;
  --tabbar-h: 74px;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);

  --app-w: 480px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* image fallback tones (used when remote photo fails to load) */
.media--amber  { background: linear-gradient(150deg, #5a431f, #2a1f10); }
.media--rust   { background: linear-gradient(150deg, #5a2f22, #271310); }
.media--cocoa  { background: linear-gradient(150deg, #3e2c20, #1c130d); }
.media--olive  { background: linear-gradient(150deg, #33401f, #161c0e); }
.media--teal   { background: linear-gradient(150deg, #173f44, #0c1d1f); }
.media--berry  { background: linear-gradient(150deg, #4a2440, #20111c); }
.media--gold   { background: linear-gradient(150deg, #6b542b, #2c2113); }

/* 2. ──────────────────────────── Reset & base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', system-ui, -apple-system, 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -.1px;
}

img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

svg { display: block; }
[data-icon] { display: inline-flex; }
.text-gold { color: var(--gold); }

/* 3. ─────────────────────────── Ambient background ─────────────────────── */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient__glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
  animation: drift 26s var(--ease) infinite alternate;
}
.ambient__glow--gold {
  width: 60vw; height: 60vw; top: -10vh; right: -20vw;
  background: radial-gradient(circle, rgba(217, 177, 111, .30), transparent 65%);
}
.ambient__glow--ember {
  width: 55vw; height: 55vw; bottom: -8vh; left: -18vw;
  background: radial-gradient(circle, rgba(150, 70, 40, .25), transparent 65%);
  animation-delay: -12s;
}
.ambient__grain {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift { to { transform: translate3d(4%, 6%, 0) scale(1.12); } }

/* 4. ──────────────────────────── Components ────────────────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; font-size: 15px; font-weight: 700; letter-spacing: 0;
  border-radius: var(--r); transition: transform .25s var(--ease), box-shadow .3s, background .3s, border-color .3s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn:active { transform: scale(.96); }
.btn--pill { border-radius: var(--r-pill); }
.btn--block { width: 100%; }

.btn--gold {
  color: #2a1d09;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--gold:hover { box-shadow: 0 14px 40px rgba(217, 177, 111, .42), inset 0 1px 0 rgba(255, 255, 255, .4); }

.btn--ghost {
  color: var(--gold-soft);
  background: rgba(217, 177, 111, .04);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(217, 177, 111, .12); border-color: var(--gold-glow); box-shadow: 0 0 22px rgba(217, 177, 111, .18); }

.icon-btn {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  display: inline-grid; place-items: center; color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .07); background: rgba(255, 255, 255, .03);
  transition: background .25s, color .25s, transform .2s;
}
.icon-btn:hover { color: var(--gold); background: rgba(217, 177, 111, .1); }
.icon-btn:active { transform: scale(.92); }

.link-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--gold-soft);
  padding: 7px 13px; border-radius: var(--r-pill);
  border: 1px solid var(--gold-line); background: rgba(217, 177, 111, .05);
  transition: background .25s, transform .2s;
}
.link-pill:hover { background: rgba(217, 177, 111, .12); }
.link-pill:active { transform: scale(.95); }

/* brand */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 34px; height: 34px; display: inline-block; filter: drop-shadow(0 2px 6px rgba(217,177,111,.3)); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__word { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand__fa { font-size: 19px; font-weight: 800; color: var(--gold);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand__en { font-size: 8.5px; letter-spacing: 3px; color: var(--muted); font-weight: 600; direction: ltr; }
.brand--lg .brand__mark { width: 42px; height: 42px; }
.brand--lg .brand__fa { font-size: 23px; }

/* horizontal scrollers */
.hscroll {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px var(--pad) 8px; margin: 0 calc(-1 * var(--pad));
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll > * { scroll-snap-align: start; flex: 0 0 auto; }

/* reveal-on-scroll (only hidden when JS is active, so no-JS keeps content visible) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }

/* 5. ──────────────────────── Layout shell ──────────────────────────────── */
.app { position: relative; z-index: 1; max-width: var(--app-w); margin: 0 auto; min-height: 100dvh; }

/* top bar */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 60; padding: calc(var(--safe-t) + 10px) var(--pad) 0; pointer-events: none; }
.topbar__inner {
  max-width: var(--app-w); margin: 0 auto; pointer-events: auto;
  height: var(--topbar-h); border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 0 8px; gap: 8px;
  box-shadow: var(--sh); transition: background .4s, box-shadow .4s, transform .4s var(--ease);
  transform: translateY(0);
}
.topbar--hidden .topbar__inner { transform: translateY(calc(-100% - var(--safe-t) - 20px)); }
.topbar--scrolled .topbar__inner { background: var(--glass-2); box-shadow: var(--sh-lg); }
.topbar__cta { padding: 10px 16px; font-size: 13px; }

/* drawer */
.drawer-scrim { position: fixed; inset: 0; z-index: 70; background: rgba(6, 6, 8, .6); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s; }
.drawer-scrim.show { opacity: 1; }
.drawer {
  position: fixed; z-index: 80; top: 0; right: 0; bottom: 0; width: min(82%, 340px);
  padding: calc(var(--safe-t) + 22px) 22px calc(var(--safe-b) + 22px);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--glass-border); border-radius: var(--r-xl) 0 0 var(--r-xl);
  background: var(--glass-2); box-shadow: var(--sh-lg);
  transform: translateX(105%); transition: transform .42s var(--ease); visibility: hidden;
}
.drawer.show { transform: translateX(0); visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; flex: 1; }
.drawer__item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--r);
  font-size: 16px; font-weight: 600; color: var(--cream-dim); transition: background .25s, color .25s, transform .2s;
}
.drawer__item span[data-icon] { color: var(--gold); }
.drawer__item:hover, .drawer__item.active { background: rgba(217, 177, 111, .1); color: var(--cream); }
.drawer__item:active { transform: scale(.97); }
.drawer__foot { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .06); }
.drawer__tag { color: var(--gold); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.drawer__social { display: flex; gap: 10px; }
.drawer__social a { width: 44px; height: 44px; border-radius: var(--r); display: grid; place-items: center; color: var(--gold-soft); border: 1px solid var(--gold-line); background: rgba(217, 177, 111, .05); transition: background .25s, transform .2s; }
.drawer__social a:hover { background: rgba(217, 177, 111, .14); }
.drawer__social a:active { transform: scale(.92); }

/* views */
.views { position: relative; }
.view { display: none; animation: viewIn .5s var(--ease) both; padding-bottom: calc(var(--tabbar-h) + var(--safe-b) + 28px); }
.view.is-active { display: block; }
@keyframes viewIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* bottom tab bar */
.tabbar { position: fixed; inset: auto 0 0 0; z-index: 60; padding: 0 var(--pad) calc(var(--safe-b) + 12px); pointer-events: none; }
.tabbar__inner {
  max-width: var(--app-w); margin: 0 auto; pointer-events: auto;
  height: var(--tabbar-h); border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: space-around; padding: 0 6px;
  box-shadow: var(--sh-lg); position: relative;
}
.tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--muted); font-size: 11px; font-weight: 600; padding: 8px 2px; border-radius: var(--r);
  transition: color .3s; position: relative;
}
.tab__ico { transition: transform .3s var(--ease); }
.tab.active { color: var(--gold); }
.tab.active .tab__ico { transform: translateY(-2px); }
.tab.active::after { content: ""; position: absolute; top: 2px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-glow); }

.tab--center { flex: 0 0 auto; margin-top: -34px; }
.tab__fab {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, #1c1d23, #0c0d10);
  border: 1.5px solid var(--gold-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .55), 0 0 0 6px rgba(12, 13, 16, .9), 0 0 26px rgba(217, 177, 111, .25);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.tab__fab svg { width: 46px; height: 46px; }
.tab--center:active .tab__fab { transform: scale(.92); }
.tab--center.active .tab__fab { box-shadow: 0 12px 30px rgba(0, 0, 0, .55), 0 0 0 6px rgba(12, 13, 16, .9), 0 0 34px rgba(217, 177, 111, .55); }

/* 6. ──────────────────────────── Sections ──────────────────────────────── */
.section { padding: 26px var(--pad) 0; }
.section--tight { padding-top: 18px; }
.section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.section__title { font-size: clamp(22px, 6vw, 28px); font-weight: 800; letter-spacing: -.5px; display: inline-flex; align-items: center; gap: 8px; }
.section__title .fire { color: #e98b3a; filter: drop-shadow(0 0 8px rgba(233, 139, 58, .5)); }

/* ── Hero ── */
.hero { position: relative; min-height: 100dvh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 var(--pad) 30px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 18s var(--ease) infinite alternate; filter: saturate(105%); }
@keyframes heroZoom { to { transform: scale(1.18) translateY(-2%); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(12, 13, 16, .35) 42%, rgba(12, 13, 16, .55) 100%),
    linear-gradient(to left, rgba(12, 13, 16, .75), rgba(12, 13, 16, .15) 70%);
}
.hero__content { position: relative; padding-bottom: 8px; }
.hero__hash { font-size: clamp(20px, 6vw, 26px); font-weight: 700; color: var(--cream-dim); margin-bottom: 2px; }
.hero__title { font-size: clamp(54px, 19vw, 92px); font-weight: 900; line-height: .95; letter-spacing: -2px; text-shadow: 0 8px 40px rgba(0, 0, 0, .5); }
.hero__title .text-gold { background: linear-gradient(120deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__rule { display: flex; align-items: center; gap: 10px; margin: 18px 0 14px; color: var(--gold); }
.hero__rule::before { content: ""; height: 1px; width: 64px; background: linear-gradient(to left, var(--gold), transparent); }
.hero__sub { font-size: clamp(15px, 4.2vw, 17px); color: var(--cream-dim); max-width: 30ch; }

.hero__social { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.social-card { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; padding: 11px 18px 11px 14px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; color: var(--cream); box-shadow: var(--sh-sm); direction: ltr; }
.social-card span[data-icon] { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex: none; }
.social-card .ic-instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7); }
.social-card .ic-telegram  { background: linear-gradient(135deg, #37bbfe, #007dbb); }
.social-card .ic-eitaa     { background: linear-gradient(135deg, #ff7a3c, #ef5713); }

.hero__cta { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.hero__cta .btn { flex: 1; min-width: 140px; }

.hero__scroll { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 1.5px solid var(--gold-line); border-radius: 12px; display: grid; place-items: start center; padding-top: 7px; opacity: .8; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-2px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(10px); } }

/* ── Feature cards ── */
.feature-card { width: 132px; padding: 18px 14px; border-radius: var(--r); text-align: center; background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--sh-sm); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.feature-card:active { transform: translateY(-3px) scale(.99); }
.feature-card__ic { width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 16px; display: grid; place-items: center; color: var(--gold); background: radial-gradient(circle at 40% 30%, rgba(217, 177, 111, .18), rgba(217, 177, 111, .03)); border: 1px solid var(--gold-line); }
.feature-card__title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.feature-card__desc { font-size: 12px; color: var(--muted); }

/* ── Categories ── */
.cat-card { width: 96px; padding: 16px 8px 13px; border-radius: var(--r); text-align: center; background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s; }
.cat-card__ic { width: 46px; height: 46px; margin: 0 auto 9px; border-radius: 14px; display: grid; place-items: center; color: var(--gold); background: rgba(217, 177, 111, .06); border: 1px solid var(--gold-line); transition: inherit; }
.cat-card__name { font-size: 13px; font-weight: 600; color: var(--cream-dim); }
.cat-card:active { transform: scale(.96); }
.cat-card.active { background: linear-gradient(155deg, rgba(217, 177, 111, .22), rgba(217, 177, 111, .06)); border-color: var(--gold-glow); box-shadow: 0 0 26px rgba(217, 177, 111, .22); }
.cat-card.active .cat-card__ic { background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #2a1d09; box-shadow: var(--sh-gold); }
.cat-card.active .cat-card__name { color: var(--cream); }

/* ── Popular cards ── */
.pop-list { display: flex; flex-direction: column; gap: 18px; }
.pop-card { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid rgba(255, 255, 255, .05); }
.pop-card__media { position: relative; aspect-ratio: 16 / 11; }
.pop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pop-card:hover .pop-card__media img { transform: scale(1.06); }
.pop-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 12, .96) 8%, rgba(10, 10, 12, .35) 55%, transparent); }
.pop-card__fav { position: absolute; top: 12px; left: 12px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--cream); z-index: 2; transition: transform .25s, color .25s, background .25s; }
.pop-card__fav.on { color: #ff5a7a; }
.pop-card__fav:active { transform: scale(.85); }
.pop-card__badge { position: absolute; top: 14px; right: 14px; z-index: 2; font-size: 11px; font-weight: 700; color: #2a1d09; padding: 5px 11px; border-radius: var(--r-pill); background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep)); box-shadow: var(--sh-sm); }
.pop-card__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 0 18px 18px; }
.pop-card__title { font-size: 20px; font-weight: 800; margin-bottom: 5px; }
.pop-card__ing { font-size: 13px; color: var(--cream-dim); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pop-card__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 5px; }
.price__num { font-size: 22px; font-weight: 800; color: var(--gold); letter-spacing: -.5px; }
.price__cur { font-size: 12px; color: var(--muted); font-weight: 600; }
.add-btn { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; color: #2a1d09; background: linear-gradient(140deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep)); box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255, 255, 255, .35); transition: transform .25s var(--ease), box-shadow .3s; flex: none; }
.add-btn:active { transform: scale(.88) rotate(90deg); }
.add-btn.added { background: linear-gradient(140deg, #7bd88f, #2f9d56); color: #06270f; }

/* ── CTA card ── */
.cta-card { position: relative; overflow: hidden; padding: 28px 22px; border-radius: var(--r-lg); text-align: center; box-shadow: var(--sh); }
.cta-card__glow { position: absolute; width: 200px; height: 200px; top: -80px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(217, 177, 111, .35), transparent 65%); filter: blur(20px); }
.cta-card__title { font-size: 23px; font-weight: 800; margin-bottom: 8px; position: relative; }
.cta-card__sub { font-size: 14px; color: var(--cream-dim); margin-bottom: 20px; position: relative; }

/* ── Testimonials ── */
.quote-card { width: 290px; padding: 22px; border-radius: var(--r-lg); background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--sh-sm); }
.quote-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.quote-card__avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-line); background: var(--bg-3); }
.quote-card__name { font-size: 15px; font-weight: 700; }
.quote-card__role { font-size: 12px; color: var(--muted); }
.quote-card__stars { margin-right: auto; display: flex; gap: 2px; color: var(--gold); }
.quote-card__stars svg { width: 15px; height: 15px; }
.quote-card__stars .off { color: var(--muted-2); }
.quote-card__text { font-size: 14px; color: var(--cream-dim); line-height: 1.85; }

/* ── About ── */
.about { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.about__media { position: relative; aspect-ratio: 16 / 10; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18, 18, 23, .9), transparent 55%); }
.about__badge { position: absolute; bottom: 14px; right: 14px; font-size: 12px; font-weight: 700; color: var(--gold-soft); padding: 7px 14px; border-radius: var(--r-pill); }
.about__body { padding: 22px; }
.about__body .section__title { margin-bottom: 12px; }
.about__body p { font-size: 14.5px; color: var(--cream-dim); margin-bottom: 12px; }
.about__stats { display: flex; gap: 10px; margin-top: 18px; }
.about__stats div { flex: 1; text-align: center; padding: 14px 6px; border-radius: var(--r); background: rgba(217, 177, 111, .05); border: 1px solid var(--gold-line); }
.about__stats strong { display: block; font-size: 22px; font-weight: 800; color: var(--gold); }
.about__stats span { font-size: 11px; color: var(--muted); }

/* ── Page head (inner views) ── */
.page-head { padding: calc(var(--safe-t) + var(--topbar-h) + 32px) var(--pad) 8px; }
.page-head__title { font-size: clamp(30px, 8vw, 38px); font-weight: 900; letter-spacing: -1px; }
.page-head__sub { font-size: 15px; color: var(--muted); margin-top: 2px; }

/* ── Sticky category bar (menu) ── */
.catbar { position: sticky; top: calc(var(--safe-t) + var(--topbar-h) + 18px); z-index: 40; padding: 10px 0; margin: 10px 0 6px; }
.catbar__track { display: flex; gap: 8px; overflow-x: auto; padding: 4px var(--pad); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.catbar__track::-webkit-scrollbar { display: none; }
.cat-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600; color: var(--cream-dim); background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); transition: all .25s; }
.cat-chip span[data-icon] { color: var(--gold); }
.cat-chip.active { color: #2a1d09; background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep)); border-color: transparent; box-shadow: var(--sh-gold); }
.cat-chip.active span[data-icon] { color: #2a1d09; }
.cat-chip:active { transform: scale(.95); }

/* ── Menu accordion ── */
.menu-accordion { padding: 8px var(--pad) 0; display: flex; flex-direction: column; gap: 14px; }
.acc { border-radius: var(--r-lg); overflow: hidden; background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--sh-sm); }
.acc__head { width: 100%; display: flex; align-items: center; gap: 13px; padding: 18px; text-align: right; }
.acc__ic { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; color: var(--gold); background: rgba(217, 177, 111, .07); border: 1px solid var(--gold-line); flex: none; }
.acc__title { font-size: 17px; font-weight: 700; flex: 1; }
.acc__count { font-size: 12px; color: var(--muted); margin-left: 4px; }
.acc__chev { color: var(--gold); transition: transform .35s var(--ease); flex: none; }
.acc.open .acc__chev { transform: rotate(180deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc.open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__list { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 12px; }

.dish { display: flex; gap: 14px; padding: 12px; border-radius: var(--r); background: rgba(255, 255, 255, .02); border: 1px solid rgba(255, 255, 255, .04); }
.dish__media { width: 92px; height: 92px; border-radius: var(--r-sm); overflow: hidden; flex: none; position: relative; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; }
.dish__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dish__name { font-size: 16px; font-weight: 700; }
.dish__desc { font-size: 12.5px; color: var(--muted); margin: 3px 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 10px; }
.dish .add-btn { width: 40px; height: 40px; border-radius: 13px; }
.dish .price__num { font-size: 18px; }

/* ── Gallery masonry ── */
.masonry { columns: 2; column-gap: 12px; padding: 14px var(--pad) 0; }
.masonry__item { break-inside: avoid; margin-bottom: 12px; border-radius: var(--r); overflow: hidden; position: relative; box-shadow: var(--sh-sm); border: 1px solid rgba(255, 255, 255, .05); }
.masonry__item img { width: 100%; display: block; transition: transform .6s var(--ease); }
.masonry__item:hover img { transform: scale(1.07); }
.masonry__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 12, .55), transparent 55%); opacity: 0; transition: opacity .3s; }
.masonry__item:hover::after { opacity: 1; }
.masonry__label { position: absolute; bottom: 10px; right: 12px; font-size: 12px; font-weight: 600; color: var(--cream); text-shadow: 0 1px 4px rgba(0, 0, 0, .6); z-index: 2; opacity: .92; }
.masonry__item--tall img { aspect-ratio: 3 / 4; object-fit: cover; }

/* ── Map & contact ── */
.map-card { position: relative; margin: 14px var(--pad) 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.map-card__img { width: 100%; height: 200px; object-fit: cover; filter: grayscale(.3) brightness(.7); }
.map-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 13, 16, .9), transparent 60%); }
.map-card__pin { position: absolute; top: 56px; left: 50%; transform: translateX(-50%); color: var(--gold); filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .6)); animation: pinBob 2.4s var(--ease) infinite; z-index: 2; }
@keyframes pinBob { 50% { transform: translateX(-50%) translateY(-7px); } }
.map-card__actions { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 16px; display: flex; gap: 10px; }
.map-card__actions .btn { flex: 1; }

.info-list { padding: 16px var(--pad) 0; display: flex; flex-direction: column; gap: 12px; }
.info-row { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--r); background: var(--glass); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); }
.info-row__ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: var(--gold); background: rgba(217, 177, 111, .06); border: 1px solid var(--gold-line); flex: none; }
.info-row__label { font-size: 12px; color: var(--muted); }
.info-row__value { font-size: 15px; font-weight: 600; color: var(--cream); }
.info-row a.info-row__value { direction: ltr; text-align: right; }
.info-row__go { margin-right: auto; color: var(--gold); }

/* 7. ──────────────────────────── Forms ─────────────────────────────────── */
.form { margin: 14px var(--pad) 0; padding: 22px 20px; border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 18px; box-shadow: var(--sh); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 13.5px; font-weight: 600; color: var(--cream-dim); }
.field__label em { color: var(--muted); font-style: normal; font-weight: 400; }
.field__wrap { display: flex; align-items: center; gap: 10px; padding: 0 14px; border-radius: var(--r); background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .08); transition: border-color .25s, box-shadow .25s, background .25s; }
.field__wrap--area { align-items: flex-start; padding-top: 12px; }
.field__icon { color: var(--muted); flex: none; margin-top: 0; }
.field__wrap--area .field__icon { margin-top: 2px; }
.field input, .field textarea { flex: 1; width: 100%; background: none; border: none; padding: 14px 0; font-size: 15px; resize: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field__wrap:focus-within { border-color: var(--gold-glow); background: rgba(217, 177, 111, .05); box-shadow: 0 0 0 4px rgba(217, 177, 111, .1); }
.field__wrap:focus-within .field__icon { color: var(--gold); }
.field input:focus-visible, .field textarea:focus-visible { outline: none; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input[type="date"] { color-scheme: dark; }
.field--invalid .field__wrap { border-color: #d8636b; box-shadow: 0 0 0 4px rgba(216, 99, 107, .12); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 9px 16px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600; color: var(--cream-dim); background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .08); transition: all .25s; }
.chip.active { color: #2a1d09; background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep)); border-color: transparent; box-shadow: var(--sh-gold); }
.chip:active { transform: scale(.94); }

/* success state */
.form--done { align-items: center; text-align: center; gap: 14px; padding: 40px 24px; }
.form-done__ring { width: 86px; height: 86px; border-radius: 50%; display: grid; place-items: center; color: #06270f; background: linear-gradient(140deg, #7bd88f, #2f9d56); box-shadow: 0 12px 34px rgba(47, 157, 86, .4); animation: pop .5s var(--ease) both; }
.form-done__ring svg { width: 44px; height: 44px; stroke-width: 2.4; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.form-done__title { font-size: 22px; font-weight: 800; }
.form-done__sub { font-size: 14px; color: var(--cream-dim); max-width: 28ch; }

/* toast */
.toast { position: fixed; left: 50%; bottom: calc(var(--tabbar-h) + var(--safe-b) + 26px); transform: translate(-50%, 24px); z-index: 90; max-width: calc(var(--app-w) - 40px); padding: 13px 20px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; color: var(--cream); background: var(--glass-2); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 9px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .35s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast span[data-icon] { color: var(--gold); }

/* 8. ──────────────────────── Animations & responsive ───────────────────── */
@media (min-width: 481px) {
  .app { box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), 0 40px 120px rgba(0, 0, 0, .6); }
  body { padding: 0; }
}

@media (max-width: 360px) {
  :root { --pad: 16px; }
  .feature-card { width: 122px; }
  .hero__cta .btn { min-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
