/* ============================================================
   SEP CAFE — Core stylesheet
   Liquid Glass · Monochrome · 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Vazirmatn for Persian */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
  /* Monochrome palette */
  --ink:        #0a0a0b;
  --ink-soft:   #141416;
  --ink-2:      #1c1c20;
  --paper:      #f7f6f3;
  --paper-2:    #ffffff;
  --smoke:      #8b8b92;
  --line:       rgba(255,255,255,0.10);
  --line-dark:  rgba(10,10,11,0.10);

  /* Liquid glass — layered, luminous */
  --glass-bg:    rgba(255,255,255,0.055);
  --glass-bg-2:  rgba(255,255,255,0.035);
  --glass-brd:   rgba(255,255,255,0.13);
  --glass-hi:    rgba(255,255,255,0.55);
  --glass-blur:  26px;
  --glass-shine: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.02) 38%, transparent 60%);

  /* Accent (warm coffee tint, used very sparingly) */
  --accent:     #c8a16b;
  --accent-2:   #e9d8bd;

  /* Typography */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-fa:      'Vazirmatn', 'Manrope', system-ui, sans-serif;

  --radius:    22px;
  --radius-sm: 15px;
  --radius-lg: 30px;

  /* Bento spacing system — one consistent rhythm everywhere */
  --gap:        18px;   /* gap between bento tiles */
  --pad-tile:   26px;   /* inner padding of a tile */
  --sec-gap:    80px;   /* vertical gap between sections */

  --shadow-soft: 0 10px 40px -12px rgba(0,0,0,0.55);
  --shadow-glass: 0 8px 30px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.16), inset 0 -1px 0 rgba(0,0,0,0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] { font-family: var(--font-fa); }

/* Inline SVG icons */
.ic { display: inline-block; vertical-align: middle; flex: 0 0 auto; }
.footer-bottom .made { color: var(--smoke); }


/* ============================================================
   Animated liquid-glass background
   ============================================================ */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 80% -10%, #1a1a1e 0%, #0a0a0b 55%),
    var(--ink);
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.blob.b1 {
  width: 46vw; height: 46vw; left: -8vw; top: -6vw;
  background: radial-gradient(circle at 30% 30%, #3a3a44, transparent 70%);
  animation: drift1 26s var(--ease) infinite alternate;
}
.blob.b2 {
  width: 40vw; height: 40vw; right: -6vw; top: 18vh;
  background: radial-gradient(circle at 60% 40%, #2c2c34, transparent 68%);
  animation: drift2 32s var(--ease) infinite alternate;
}
.blob.b3 {
  width: 34vw; height: 34vw; left: 28vw; bottom: -10vh;
  background: radial-gradient(circle at 50% 50%, rgba(200,161,107,0.18), transparent 70%);
  animation: drift3 30s var(--ease) infinite alternate;
}

@keyframes drift1 { to { transform: translate(8vw, 10vh) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-7vw, -6vh) scale(1.18); } }
@keyframes drift3 { to { transform: translate(-5vw, -8vh) scale(0.9); } }

/* Fine grain overlay */
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Glass primitives — liquid glass
   ============================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(165%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* gradient hairline border */
.glass::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--glass-hi), transparent 38%, transparent 68%, rgba(255,255,255,0.10));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
/* glossy top sheen — the "liquid" highlight */
.glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--glass-shine);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
/* keep real content above the sheen/border layers */
.glass > * { position: relative; z-index: 3; }

/* ============================================================
   Layout
   ============================================================ */
.container { width: min(1200px, 92%); margin-inline: auto; }
section { padding: var(--sec-gap) 0; position: relative; }
section:first-of-type { padding-top: 0; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  width: min(1180px, 92%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(12,12,14,0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), background .4s;
}
.nav-logo {
  font-weight: 800; font-size: 1.05rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--paper);
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--smoke); text-decoration: none; font-size: .9rem; font-weight: 500;
  padding: 9px 16px; border-radius: 100px; transition: all .3s var(--ease);
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-links a .ic { opacity: .8; }
.nav-links a:hover { color: var(--paper); background: rgba(255,255,255,0.08); }
.lang-toggle {
  cursor: pointer; border: 1px solid var(--glass-brd); background: transparent;
  color: var(--paper); padding: 8px 16px; border-radius: 100px; font-weight: 600;
  font-family: inherit; font-size: .82rem; transition: all .3s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.lang-toggle:hover { background: var(--paper); color: var(--ink); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--paper); margin: 5px 0; transition: .3s; }

/* ============================================================
   Hero — Bento composition
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 110px; padding-bottom: 40px; position: relative;
}
.hero-bento {
  width: 100%;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
  grid-template-areas:
    "main special"
    "hours instagram";
}
.hb-main      { grid-area: main; padding: clamp(34px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; min-height: 380px; overflow: hidden; }
.hb-special   { grid-area: special; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; overflow: hidden; }
.hb-mini      { display: flex; align-items: center; gap: 15px; padding: 22px 24px; }
.hb-hours     { grid-area: hours; }
.hb-link      { grid-area: instagram; text-decoration: none; color: inherit; }

/* main tile */
.hb-main > .hb-glow, .hb-special > .hb-veil { z-index: 0; }
.hb-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,161,107,.16), transparent 65%);
  top: -160px; inset-inline-end: -120px; pointer-events: none; filter: blur(8px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .78rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px; font-weight: 600;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem); font-weight: 800; line-height: 1.0;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; }
/* Persian reads better as one line: "قهوه با روح" */
body[dir="rtl"] .hero h1 .line { display: inline; }
body[dir="rtl"] .hero h1 .line + .line::before { content: ' '; white-space: pre; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: 1.08rem; color: var(--smoke); max-width: 460px; margin-bottom: 30px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: .94rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all .35s var(--ease); font-family: inherit;
}
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(255,255,255,0.3); }
.btn-ghost { background: var(--glass-bg); border-color: var(--glass-brd); color: var(--paper);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* special tile */
.hb-special.has-img { background-size: cover; background-position: center; }
.hb-veil { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(8,8,10,.92) 8%, rgba(8,8,10,.2) 70%); }
.hb-special-top { position: relative; }
.special-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 600;
  padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(200,161,107,.3); background: rgba(200,161,107,.08);
}
.hb-special-body { position: relative; }
.special-name { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; line-height: 1.25; margin-top: 16px; }
.hb-special .cup {
  width: 100%; aspect-ratio: 1.5; border-radius: var(--radius-sm);
  background: radial-gradient(circle at 50% 36%, #2a2a30, #0c0c0e), var(--ink-2);
  display: grid; place-items: center; position: relative; overflow: hidden;
  border: 1px solid var(--glass-brd); margin-bottom: 6px;
}
.hb-special .cup svg { width: 34%; opacity: .9; color: var(--accent); }
.steam { position: absolute; top: 16%; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; }
.steam i { display: block; width: 4px; height: 36px; border-radius: 4px;
  background: linear-gradient(to top, transparent, rgba(255,255,255,0.4)); filter: blur(2px);
  animation: steam 3s ease-in-out infinite; }
.steam i:nth-child(2){ animation-delay: .6s; height: 48px; }
.steam i:nth-child(3){ animation-delay: 1.2s; }

/* mini tiles */
.hb-mini-ic {
  width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto;
  display: grid; place-items: center; color: var(--accent);
  background: rgba(200,161,107,.1); border: 1px solid rgba(200,161,107,.22);
}
.hb-mini small { display: block; font-size: .74rem; color: var(--smoke); margin-bottom: 3px; }
.hb-mini strong { display: block; font-size: .98rem; font-weight: 700; }
.hb-link { transition: transform .4s var(--ease), border-color .3s; }
.hb-link:hover { transform: translateY(-3px); border-color: var(--glass-hi); }
.hb-arrow { margin-inline-start: auto; color: var(--smoke); display: inline-flex; transition: transform .3s var(--ease); }
body[dir="rtl"] .hb-arrow svg { transform: scaleX(-1); }
.hb-link:hover .hb-arrow { transform: translateX(-4px); }
body[dir="ltr"] .hb-link:hover .hb-arrow { transform: translateX(4px); }
@keyframes steam { 0%,100%{ opacity:.1; transform: translateY(6px) scaleY(.8);} 50%{ opacity:.7; transform: translateY(-6px) scaleY(1.1);} }

/* ============================================================
   Section heading
   ============================================================ */
.sec-head { margin-bottom: 40px; max-width: 640px; }
.sec-tag { font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.sec-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; margin: 12px 0; line-height: 1.02; }
.sec-head p { color: var(--smoke); font-size: 1rem; }

/* ============================================================
   Stories row
   ============================================================ */
.stories-row { display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 14px; scrollbar-width: none; }
.stories-row::-webkit-scrollbar { display: none; }
.story-ring {
  flex: 0 0 auto; width: 80px; cursor: pointer; text-align: center;
  transition: transform .3s var(--ease);
}
.story-ring:hover { transform: translateY(-4px); }
.story-ring .ring {
  width: 80px; height: 80px; border-radius: 50%; padding: 3px;
  background: conic-gradient(from 180deg, var(--accent), var(--paper), var(--accent));
}
.story-ring.is-highlight .ring {
  padding: 4px;
  background: conic-gradient(from 130deg, var(--accent), #f4dca8, var(--accent), #b8895a, var(--accent));
}
.story-ring.is-highlight small { color: var(--accent); font-weight: 600; }
.story-ring .ring > div {
  width: 100%; height: 100%; border-radius: 50%; background: var(--ink-2);
  background-size: cover; background-position: center; border: 3px solid var(--ink);
}
.story-ring small { display: block; margin-top: 8px; font-size: .72rem; color: var(--smoke); }

/* ============================================================
   Bento grid (featured)
   ============================================================ */
.bento {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
}
.bento-card {
  padding: var(--pad-tile); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .5s var(--ease), border-color .4s;
  cursor: pointer; position: relative;
}
.bento-card:hover { transform: translateY(-5px); border-color: var(--glass-hi); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.row-2 { grid-row: span 2; }
/* image fills the whole tile; gradient sits on top of it but under content */
.bento-card .thumb {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .55; z-index: 0; transition: opacity .5s, transform .6s var(--ease);
}
.bento-card:hover .thumb { opacity: .7; transform: scale(1.06); }
.bento-card .thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.94) 6%, rgba(8,8,10,0.35) 60%, rgba(8,8,10,0.1));
}
.bento-card .badge {
  position: absolute; top: 16px; inset-inline-start: 16px; z-index: 4;
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 100px; background: var(--accent); color: var(--ink); font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px;
}
.bento-card .badge svg { fill: var(--ink); stroke: var(--ink); }
.bento-card h3 { font-size: 1.3rem; font-weight: 700; }
.bento-card p { color: var(--smoke); font-size: .88rem; margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bento-card .price { font-size: 1.02rem; color: var(--accent-2); font-weight: 700; margin-top: 8px; }

/* ============================================================
   Menu (full categorized)
   ============================================================ */
.cat-tabs {
  display: flex; gap: 10px; margin-bottom: 28px;
  overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity; padding-bottom: 4px;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 11px 22px; border-radius: 100px; cursor: pointer; font-weight: 600; font-size: .9rem;
  background: var(--glass-bg); border: 1px solid var(--glass-brd); color: var(--smoke);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  font-family: inherit; white-space: nowrap; flex: 0 0 auto; scroll-snap-align: start;
}
.cat-tab:hover { color: var(--paper); }
.cat-tab.active { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.menu-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap);
  transition: opacity .35s var(--ease);
}
.menu-list.switching { opacity: 0; }
.menu-row {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer;
  transition: transform .45s var(--ease), border-color .3s, opacity .45s var(--ease);
}
.menu-row:hover { transform: translateX(-4px); border-color: var(--glass-hi); }
body[dir="ltr"] .menu-row:hover { transform: translateX(4px); }
/* smooth filter animation */
.menu-row.cat-hide { opacity: 0; transform: scale(.94); pointer-events: none;
  position: absolute; visibility: hidden; }
.menu-row.cat-show { animation: catIn .45s var(--ease) both; }
@keyframes catIn { from { opacity: 0; transform: translateY(14px) scale(.97); }
                   to   { opacity: 1; transform: none; } }
.menu-row .mr-img {
  width: 64px; height: 64px; border-radius: 14px; flex: 0 0 auto; background-size: cover;
  background-position: center; background-color: var(--ink-2); border: 1px solid var(--glass-brd);
  display: grid; place-items: center; color: var(--accent);
}
.menu-row .mr-img .ic { opacity: .55; }
.menu-row .mr-body { flex: 1; min-width: 0; }
.menu-row .mr-name { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.menu-row .mr-name .star { color: var(--accent); display: inline-flex; }
.menu-row .mr-name .star svg { fill: var(--accent); stroke: var(--accent); }
.menu-row .mr-desc { color: var(--smoke); font-size: .85rem; margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-row .mr-price { font-weight: 700; color: var(--accent-2); white-space: nowrap; }

/* ============================================================
   Beans
   ============================================================ */
.beans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--gap); }
.bean-card { padding: 0; overflow: hidden; transition: transform .5s var(--ease); }
.bean-card:hover { transform: translateY(-6px); }
.bean-card .bean-img {
  width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center;
  background-color: var(--ink-2); display: grid; place-items: center; color: var(--accent);
  border-bottom: 1px solid var(--glass-brd);
}
.bean-card .bean-img .ic { opacity: .45; }
.bean-card .bean-body { padding: 26px 28px 30px; }
.bean-card .roast {
  display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; border: 1px solid var(--glass-brd); color: var(--accent); margin-bottom: 16px;
}
.bean-card h3 { font-size: 1.4rem; font-weight: 700; }
.bean-card .origin { color: var(--smoke); font-size: .9rem; margin: 4px 0 16px; }
.bean-card .notes { display: flex; gap: 8px; flex-wrap: wrap; }
.bean-card .note { font-size: .78rem; padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-brd); }

/* ============================================================
   Posts
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: var(--gap); }
.post-card { overflow: hidden; transition: transform .5s var(--ease); }
.post-card:hover { transform: translateY(-6px); }
.post-media { aspect-ratio: 16/10; background: var(--ink-2); background-size: cover; background-position: center; position: relative; }
.post-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-media .play {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
}
.post-media .play span {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,0.85);
  display: grid; place-items: center; color: var(--ink);
}
.post-body { padding: 24px; }
.post-body .meta { font-size: .76rem; color: var(--smoke); letter-spacing: .05em; }
.post-body h3 { font-size: 1.25rem; font-weight: 700; margin: 8px 0; }
.post-body p { color: var(--smoke); font-size: .92rem; }

/* ============================================================
   Info / contact strip
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--gap); }
.info-card { padding: 28px; text-align: center; }
.info-card .ico { margin-bottom: 14px; display: inline-grid; place-items: center;
  width: 54px; height: 54px; border-radius: 16px; color: var(--accent);
  background: rgba(200,161,107,.1); border: 1px solid rgba(200,161,107,.25);
  margin-inline: auto; }
.info-card h4 { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--smoke); margin-bottom: 8px; }
.info-card p { font-weight: 600; }
.info-card a { color: var(--accent-2); text-decoration: none; }

#map { width: 100%; height: 340px; border-radius: var(--radius); margin-top: var(--gap); border: 1px solid var(--glass-brd); filter: grayscale(1) contrast(1.1) brightness(.8); }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 0 0 30px; margin-top: var(--sec-gap); }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 20px; padding: 22px 30px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-logo { font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: 1.05rem; }
.footer-logo img { height: 28px; display: block; }
.footer-brand span { color: var(--smoke); font-size: .85rem; padding-inline-start: 16px; border-inline-start: 1px solid var(--line); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--paper); text-decoration: none; font-size: .9rem; opacity: .8; transition: opacity .3s; }
.footer-links a:hover { opacity: 1; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  color: var(--paper); border: 1px solid var(--glass-brd); background: var(--glass-bg-2);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.footer-social a:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }
.footer-bottom { margin-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--smoke); font-size: .8rem; padding: 0 6px; }
.footer-bottom .made a { color: var(--accent); text-decoration: none; font-weight: 600; transition: color .25s; }
.footer-bottom .made a:hover { color: var(--accent-2); text-decoration: underline; }

/* ============================================================
   Story viewer (modal)
   ============================================================ */
.story-modal {
  position: fixed; inset: 0; z-index: 1000; background: rgba(5,5,6,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
}
.story-modal.open { display: flex; }
.story-viewer { width: min(420px, 92%); aspect-ratio: 9/16; border-radius: 24px; overflow: hidden; position: relative; background: #000; }
.story-viewer img, .story-viewer video { width: 100%; height: 100%; object-fit: cover; }
.story-bars { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; gap: 6px; z-index: 3; }
.story-bars .bar { flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 3px; overflow: hidden; }
.story-bars .bar i { display: block; height: 100%; width: 0; background: #fff; }
.story-bars .bar.active i { animation: storyfill 5s linear forwards; animation-duration: var(--story-dur, 5s); }
.story-bars .bar.done i { width: 100%; }
@keyframes storyfill { to { width: 100%; } }
.story-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 22px; z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); font-weight: 600; }
.story-close { position: absolute; top: 16px; right: 16px; z-index: 5; background: rgba(255,255,255,0.15);
  border: none; color: #fff; width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; }
.story-mute { position: absolute; top: 16px; right: 62px; z-index: 5; background: rgba(255,255,255,0.15);
  border: none; color: #fff; width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: none; place-items: center; }
.story-mute .on  { display: inline-flex; }
.story-mute .off { display: none; }
.story-mute.muted .on  { display: none; }
.story-mute.muted .off { display: inline-flex; }
.story-nav { position: absolute; top: 0; bottom: 0; width: 40%; z-index: 2; cursor: pointer; }
.story-nav.prev { left: 0; } .story-nav.next { right: 0; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Mobile bottom navigation (base — hidden on desktop)
   ============================================================ */
.mobile-nav {
  display: none; position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 250; gap: 4px; padding: 8px;
  width: calc(100% - 28px); max-width: 460px; justify-content: space-around;
  background: rgba(14,14,16,0.78); border: 1px solid var(--glass-brd); border-radius: 22px;
  backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 14px 44px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.12);
}
.mn-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: var(--smoke); font-size: .62rem; font-weight: 600;
  padding: 7px 4px; border-radius: 14px; transition: color .25s, background .25s;
}
.mn-item .ic { transition: transform .3s var(--ease); }
.mn-item.active { color: var(--paper); background: rgba(255,255,255,.07); }
.mn-item.active .ic { color: var(--accent); transform: translateY(-1px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "special special"
      "hours instagram";
  }
  .hb-main { min-height: 320px; }
  .hb-special { min-height: 260px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-2 { grid-column: span 2; }
  .menu-list { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --sec-gap: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 4%; right: 4%;
    background: rgba(12,12,14,0.95); padding: 16px; border-radius: 20px; border: 1px solid var(--glass-brd);
    backdrop-filter: blur(20px); z-index: 120;
  }
  .hero { padding-top: 96px; min-height: auto; }
  .hero-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "special"
      "hours"
      "instagram";
  }
  .hb-main { min-height: auto; padding: 32px 26px; }
  .hb-special { min-height: 220px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 190px; }
  .bento-card.span-2 { grid-column: span 1; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-brand span { padding-inline-start: 0; border-inline-start: none; }
  /* show bottom nav + give content clearance */
  body { padding-bottom: 82px; }
  .mobile-nav { display: flex; }
  .menu-row .mr-img { width: 54px; height: 54px; }
}

/* ============================================================
   Menu-item modal
   ============================================================ */
.item-modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.item-modal.open { display: flex; }
.item-modal-backdrop {
  position: absolute; inset: 0; background: rgba(5,5,7,.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .3s ease both;
}
.item-card {
  position: relative; z-index: 1; width: 100%; max-width: 460px; overflow: hidden;
  padding: 0; animation: itemPop .4s var(--ease) both;
}
@keyframes itemPop { from { opacity: 0; transform: translateY(24px) scale(.96); }
                     to   { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.item-close {
  position: absolute; top: 14px; inset-inline-end: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--paper);
  background: rgba(0,0,0,.45); border: 1px solid var(--glass-brd); backdrop-filter: blur(8px);
  transition: background .25s; font-family: inherit;
}
.item-close:hover { background: rgba(0,0,0,.7); }
.item-img {
  width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center;
  background-color: var(--ink-2); display: grid; place-items: center; color: var(--accent);
}
.item-img.empty::after { content: ''; }
.item-info { padding: 26px 28px 30px; }
.item-cat {
  display: inline-block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
.item-info h3 { font-size: 1.6rem; font-weight: 700; line-height: 1.2; }
.item-info > p { color: var(--smoke); font-size: .95rem; line-height: 1.8; margin-top: 12px; }
.item-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; }
.item-price { font-size: 1.25rem; font-weight: 700; color: var(--accent-2); }
.item-feat {
  display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--accent);
  padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(200,161,107,.35);
}
.item-feat svg { fill: var(--accent); stroke: var(--accent); }


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
