/* =========================================================
   CHAIIBUCKS by Shikara - app.css
   Palette: Sherwin-Williams "Serious Gray" family + badge gold
   Type: Unbounded (display) / Onest (text) - self-hosted, Latin-ext + Cyrillic
   ========================================================= */

@font-face { font-family: "Unbounded"; src: url(../fonts/unbounded-latin.woff2) format("woff2"); font-weight: 200 900; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Unbounded"; src: url(../fonts/unbounded-latin-ext.woff2) format("woff2"); font-weight: 200 900; font-display: swap; unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Unbounded"; src: url(../fonts/unbounded-cyrillic.woff2) format("woff2"); font-weight: 200 900; font-display: swap; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: "Onest"; src: url(../fonts/onest-latin.woff2) format("woff2"); font-weight: 100 900; font-display: swap; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Onest"; src: url(../fonts/onest-latin-ext.woff2) format("woff2"); font-weight: 100 900; font-display: swap; unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Onest"; src: url(../fonts/onest-cyrillic.woff2) format("woff2"); font-weight: 100 900; font-display: swap; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

:root {
  --paper: #EDEFEE;
  --paper-2: #E3E6E5;
  --olympus: #D4D8D7;
  --lazy: #BEC2C3;
  --fog: #A8AEB1;
  --dust: #959BA3;
  --serious: #7A828B;
  --gibraltar: #626973;
  --slate: #3E4B54;
  --ink: #26303A;
  --white: #FBFCFB;
  --gold: #B8975A;
  --gold-soft: #D9C69C;
  --veg: #5F7E55;

  --f-display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --f-text: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 72px;
  --r-lg: 28px;
  --r-md: 18px;
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 72px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.6 var(--f-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--slate); color: var(--white); padding: 10px 16px; border-radius: 999px; }
.skip:focus { top: 12px; }
.muted { color: var(--gibraltar); }
.small { font-size: .86rem; }

/* ---------- type ---------- */
.display { font-family: var(--f-display); font-weight: 700; letter-spacing: -.025em; line-height: 1.04; color: var(--slate); text-wrap: balance; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.h5 { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; color: var(--slate); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--gibraltar); max-width: 52ch; }

/* ---------- buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--slate); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: 0 1.4em;
  border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .98rem; text-decoration: none; white-space: nowrap;
  cursor: pointer; transition: transform .2s var(--ease-out), background-color .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.btn-solid { --bg: var(--slate); --fg: var(--white); }
.btn-solid:hover { --bg: var(--ink); }
.btn-line { --bd: var(--slate); }
.btn-line:hover { --bg: var(--slate); --fg: var(--white); }
.btn-light { --bg: var(--white); --fg: var(--slate); }
.btn-light:hover { --bg: var(--gold-soft); }
.btn-ghost { --fg: var(--gibraltar); padding: 0 1em; text-decoration: underline; text-underline-offset: 4px; }
.btn-gold { --bg: var(--gold); --fg: var(--ink); }
.btn-lg { min-height: 56px; padding: 0 1.8em; font-size: 1.04rem; }
.btn[disabled] { opacity: .55; pointer-events: none; }
.btn-mini { border: 1px solid var(--lazy); background: transparent; border-radius: 999px; padding: 2px 12px; font-size: .8rem; cursor: pointer; }

/* ---------- announcement ---------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px var(--gutter); background: var(--slate); color: var(--olympus);
  font-size: .9rem; text-decoration: none; text-align: center;
}
.announce:hover span:last-child { text-decoration: underline; text-underline-offset: 3px; }
.announce-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(184, 151, 90, .7); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(184, 151, 90, 0); } 100% { box-shadow: 0 0 0 0 rgba(184, 151, 90, 0); } }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(237, 239, 238, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav.is-scrolled { border-bottom-color: var(--olympus); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; height: var(--nav-h); padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-badge { width: 44px; height: 44px; transition: transform .8s var(--ease-spring); }
.brand:hover .brand-badge { transform: rotate(360deg); }
.brand-word { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--slate); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a:not(.btn) { text-decoration: none; font-weight: 500; color: var(--slate); position: relative; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); }
.lang-switch { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--lazy); border-radius: 999px; }
.lang-switch a { text-decoration: none; font-size: .78rem; font-weight: 600; padding: 4px 9px; border-radius: 999px; color: var(--gibraltar); }
.lang-switch a[aria-current] { background: var(--slate); color: var(--white); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; cursor: pointer; }
.burger { display: grid; gap: 7px; width: 26px; margin: auto; }
.burger i { display: block; height: 2px; background: var(--slate); border-radius: 2px; transition: transform .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] .burger i:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .burger i:last-child { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; height: calc(100dvh - var(--nav-h));
    flex-direction: column; align-items: flex-start; gap: 8px; padding: 32px var(--gutter);
    background: var(--paper); transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .25s, transform .3s var(--ease-out), visibility .25s;
  }
  .nav-links.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav-links > a:not(.btn) { font-family: var(--f-display); font-size: 1.7rem; font-weight: 600; padding: 6px 0; }
  .nav-links .lang-switch { margin: 18px 0; }
  .nav-cta { width: 100%; }
  .brand-word { font-size: 1rem; }
}

/* ---------- layout helpers ---------- */
.hero, .menu, .club, .story, .visit, .rewards, .staff, .prose { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- arch motif (Mughal jharokha) ---------- */
.arch { -webkit-mask: url(../img/arch.svg) center / 100% 100% no-repeat; mask: url(../img/arch.svg) center / 100% 100% no-repeat; overflow: hidden; background: var(--olympus); }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(32px, 6vw, 96px); min-height: calc(100svh - var(--nav-h) - 44px); padding-top: 40px; padding-bottom: 64px; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 5.4rem); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.hero .lead { margin-top: 28px; }
.hero-art { position: relative; justify-self: center; width: min(100%, 460px); }
.arch--hero { aspect-ratio: 100 / 130; }
.steam { position: absolute; left: 55%; top: 7%; width: 26%; transform: translateX(-50%); pointer-events: none; overflow: visible; }
.steam path { fill: none; stroke: rgba(251, 252, 251, .85); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 60 200; stroke-dashoffset: 0; opacity: 0; filter: blur(1.2px); animation: steam 4.2s ease-in-out infinite; }
.steam path:nth-child(2) { animation-delay: 1.3s; }
.steam path:nth-child(3) { animation-delay: 2.6s; }
@keyframes steam {
  0% { stroke-dashoffset: 0; opacity: 0; transform: translateY(8px); }
  25% { opacity: .9; }
  100% { stroke-dashoffset: -190; opacity: 0; transform: translateY(-18px); }
}
.price-tag { position: absolute; left: -22px; bottom: 44px; display: grid; gap: 2px; padding: 14px 20px; border-radius: var(--r-md); background: rgba(251, 252, 251, .9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 18px 40px -18px rgba(38, 48, 58, .45); }
.price-tag span { font-size: .82rem; color: var(--gibraltar); }
.price-tag strong { font-family: var(--f-display); font-size: 1.5rem; color: var(--slate); }
.hero-badge { position: absolute; right: -30px; top: 16%; width: 118px; filter: drop-shadow(0 14px 22px rgba(38, 48, 58, .28)); }

/* page-load orchestration: the one big moment */
.home .hero-title, .home .hero .lead, .home .hero-actions { animation: rise .9s var(--ease-out) both; }
.home .hero .lead { animation-delay: .12s; }
.home .hero-actions { animation-delay: .22s; }
.home .arch--hero { animation: archIn 1.3s var(--ease-out) both .1s; }
.home .arch--hero img { animation: zoomOut 2.2s var(--ease-out) both .1s; }
.home .price-tag { animation: rise .8s var(--ease-spring) both .9s; }
.home .hero-badge { animation: pop .9s var(--ease-spring) both 1.1s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes archIn { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes zoomOut { from { transform: scale(1.18); } to { transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(.4) rotate(-40deg); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 28px; }
  .hero-art { width: min(82%, 380px); grid-row: 1; }
  .hero-badge { width: 88px; right: -18px; }
  .price-tag { left: -12px; }
}

/* ---------- opening ---------- */
.opening { position: relative; background: var(--slate); color: var(--olympus); overflow: hidden; }
.opening-inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(64px, 9vw, 120px) var(--gutter) 176px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px 64px; align-items: end; }
.opening .display { color: var(--white); }
.opening .lead { color: var(--lazy); margin-top: 20px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.countdown div { display: grid; justify-items: center; padding: 18px 6px 14px; border: 1px solid rgba(212, 216, 215, .22); border-radius: var(--r-md); }
.countdown span { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--white); font-variant-numeric: tabular-nums; line-height: 1.1; display: inline-block; }
.countdown span.tick { animation: tick .45s var(--ease-out); }
@keyframes tick { from { transform: translateY(-40%); opacity: .2; } to { transform: none; opacity: 1; } }
.countdown small { color: var(--fog); font-size: .8rem; margin-top: 4px; }
.notify { grid-column: 1 / -1; max-width: 620px; }
.notify label { display: block; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.notify-row { display: flex; gap: 8px; padding: 6px; border-radius: 999px; background: rgba(251, 252, 251, .1); border: 1px solid rgba(212, 216, 215, .25); }
.notify-row input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0 16px; color: var(--white); outline: none; }
.notify-row input::placeholder { color: var(--fog); }
.notify-row:focus-within { border-color: var(--gold); }
.form-msg { min-height: 1.6em; margin-top: 10px; font-size: .92rem; }
.form-msg.is-ok { color: var(--gold-soft); }
.form-msg.is-error { color: #E7A08B; }
.opening .form-msg.is-error { color: #F1B9A6; }

.boat-line { position: absolute; left: 0; right: 0; bottom: 0; height: 132px; }
.water { position: absolute; left: 0; right: 0; bottom: 66px; height: 2px; background: repeating-linear-gradient(90deg, rgba(212, 216, 215, .35) 0 14px, transparent 14px 26px); animation: water 3s linear infinite; }
@keyframes water { to { background-position: 26px 0; } }
.voyage { position: absolute; bottom: 0; height: 100%; left: calc(var(--gutter) + 6px); right: calc(var(--gutter) + 6px); max-width: calc(var(--wrap) - var(--gutter) * 2); margin: 0 auto; }
.sailer { position: absolute; bottom: 64px; left: -60px; width: 120px; display: grid; justify-items: center; pointer-events: none; animation: voyage 30s cubic-bezier(.45, .05, .55, .95) infinite; }
.boat { width: 120px; animation: bob 3.2s ease-in-out infinite; }
.boat path { fill: none; stroke: var(--gold-soft); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.boat .boat-hull { fill: rgba(217, 198, 156, .18); }
.boat-year { margin-bottom: 4px; padding: 2px 9px; border-radius: 999px; background: var(--gold); color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: .74rem; font-variant-numeric: tabular-nums; box-shadow: 0 6px 14px -8px rgba(0, 0, 0, .6); }
@keyframes voyage {
  0% { left: -60px; opacity: 0; }
  5% { left: -60px; opacity: 1; }
  88% { left: calc(100% - 60px); opacity: 1; }
  96% { left: calc(100% - 60px); opacity: 0; }
  100% { left: -60px; opacity: 0; }
}
.stop { position: absolute; bottom: 14px; display: grid; gap: 2px; font-size: .86rem; color: var(--lazy); line-height: 1.2; }
.stop b { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--white); letter-spacing: -.01em; }
.stop i { position: absolute; top: -24px; width: 12px; height: 12px; border-radius: 50%; background: var(--slate); border: 2px solid var(--gold-soft); }
.stop--from { left: 0; transform: translateX(-6px); }
.stop--from i { left: 0; }
.stop--to { right: 0; text-align: right; justify-items: end; transform: translateX(6px); }
.stop--to i { right: 0; background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 0 rgba(184, 151, 90, .7); animation: pulse 2.4s infinite; }
@keyframes bob { 50% { transform: translateY(-3px) rotate(-1.2deg); } }

@media (max-width: 860px) { .opening-inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
  .notify-row { flex-direction: column; border-radius: var(--r-md); }
  .notify-row input { min-height: 48px; }
}

/* ---------- menu ---------- */
.menu { padding-top: clamp(72px, 10vw, 128px); padding-bottom: 72px; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 12px 40px; margin-bottom: 28px; }
.menu-tools { position: sticky; top: var(--nav-h); z-index: 30; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding: 12px 0; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); background: rgba(237, 239, 238, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--olympus); }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; flex: 1 1 520px; }
.chips::-webkit-scrollbar { display: none; }
.chips { -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent); padding-right: 40px; }
.chip { flex: none; scroll-snap-align: start; text-decoration: none; padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: .92rem; border: 1.5px solid var(--lazy); color: var(--gibraltar); transition: background-color .2s, color .2s, border-color .2s; }
.chip:hover { border-color: var(--slate); color: var(--slate); }
.chip[aria-selected="true"] { background: var(--slate); border-color: var(--slate); color: var(--white); }
.menu-filters { display: flex; align-items: center; gap: 16px; }
.search { display: flex; align-items: center; gap: 8px; height: 42px; padding: 0 14px; border-radius: 999px; background: var(--white); border: 1.5px solid var(--olympus); }
.search:focus-within { border-color: var(--slate); }
.search svg { width: 18px; height: 18px; fill: none; stroke: var(--gibraltar); stroke-width: 2; stroke-linecap: round; }
.search input { border: 0; outline: none; background: transparent; width: 170px; }
.toggle { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: .92rem; font-weight: 500; white-space: nowrap; }
.toggle input { position: absolute; opacity: 0; }
.toggle-ui { position: relative; width: 42px; height: 24px; border-radius: 999px; background: var(--lazy); transition: background-color .2s; }
.toggle-ui::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); transition: transform .3s var(--ease-spring); }
.toggle input:checked + .toggle-ui { background: var(--veg); }
.toggle input:checked + .toggle-ui::after { transform: translateX(18px); }
.toggle input:focus-visible + .toggle-ui { outline: 3px solid var(--gold); outline-offset: 2px; }

.cat { padding-top: 56px; }
.cat[hidden] { display: none; }
.cat-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; padding-bottom: 14px; border-bottom: 2px solid var(--slate); margin-bottom: 8px; }
.cat-head p { color: var(--gibraltar); }
.dishes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; }
.dish { display: grid; grid-template-columns: 42px 76px minmax(0, 1fr) auto 18px; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--olympus); }
.dish[hidden] { display: none; }
.dish-no { justify-self: start; display: grid; place-items: center; min-width: 38px; height: 30px; padding: 0 6px; border-radius: 10px; background: var(--gibraltar); color: var(--white); font-family: var(--f-display); font-size: .78rem; font-weight: 600; }
.dish-img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; background: var(--paper-2); transition: transform .8s var(--ease-spring); box-shadow: 0 10px 20px -12px rgba(38, 48, 58, .6); }
.dish:hover .dish-img { transform: rotate(28deg) scale(1.06); }
.dish-img--empty { background: var(--paper-2) url(../img/mark.svg) center / 46% no-repeat; box-shadow: inset 0 0 0 1px var(--olympus); }
.dish-text h4 { font-family: var(--f-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.dish-text p { font-size: .9rem; color: var(--gibraltar); line-height: 1.45; margin-top: 2px; }
.dish-price { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--slate); font-variant-numeric: tabular-nums; }
.tag-veg { flex: none; width: 14px; height: 14px; border: 1.6px solid var(--veg); border-radius: 3px; display: inline-grid; place-items: center; }
.tag-veg::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--veg); }
.fav { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px !important; font-size: .78rem !important; font-weight: 600; color: var(--gold) !important; }
.fav svg { width: 13px; height: 13px; fill: var(--gold); }
.menu-empty { padding: 48px 0; text-align: center; color: var(--gibraltar); }

.order-strip { margin-top: 64px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 20px 48px; padding: 28px 32px; border-radius: var(--r-lg); background: var(--olympus); }
.order-strip ol { display: flex; flex-wrap: wrap; gap: 12px 32px; counter-reset: step; }
.order-strip li { counter-increment: step; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.order-strip li::before { content: counter(step, decimal-leading-zero); font-family: var(--f-display); font-weight: 700; font-size: .82rem; color: var(--gibraltar); }
.menu-note { grid-column: 1 / -1; font-size: .86rem; color: var(--gibraltar); }

@media (max-width: 900px) {
  .dishes { grid-template-columns: 1fr; }
  .order-strip { grid-template-columns: 1fr; }
  .menu-filters { width: 100%; justify-content: space-between; }
  .search { flex: 1; }
  .search input { width: 100%; }
}
@media (max-width: 520px) {
  .dish { grid-template-columns: 60px minmax(0, 1fr) auto; grid-template-rows: auto auto; row-gap: 4px; column-gap: 12px; }
  .dish-img { grid-row: 1 / span 2; width: 60px; height: 60px; }
  .dish-no { grid-column: 2; grid-row: 2; height: 22px; min-width: 30px; font-size: .7rem; border-radius: 7px; }
  .dish-text { grid-column: 2; grid-row: 1; }
  .dish-price { grid-column: 3; grid-row: 1; align-self: start; }
  .dish-go { grid-column: 3; grid-row: 2; justify-self: end; }
  .menu-tools { top: calc(var(--nav-h) - 1px); }
}

/* ---------- lotus ---------- */
.lotus { overflow: visible; }
.lotus-ring { fill: none; stroke: var(--lazy); stroke-width: 1.2; stroke-dasharray: 2 7; transform-origin: 0 0; animation: spin 90s linear infinite; }
.petal { transform: rotate(var(--r)); }
.petal-ghost { fill: none; stroke: var(--fog); stroke-width: 1.6; stroke-dasharray: 4 5; }
.petal-fill { fill: var(--slate); transform-origin: 0 -18px; transform: scale(.2); opacity: 0; transition: transform .7s var(--ease-spring), opacity .35s, fill .6s; }
.petal-vein { fill: none; stroke: rgba(251, 252, 251, .55); stroke-width: 1.4; stroke-linecap: round; opacity: 0; transition: opacity .5s .2s; }
.petal.is-open .petal-fill { transform: scale(1); opacity: 1; }
.petal.is-open .petal-vein { opacity: 1; }
.petal:nth-child(odd of .petal).is-open .petal-fill { fill: var(--gibraltar); }
.lotus-core { fill: var(--paper); stroke: var(--slate); stroke-width: 2; transition: fill .6s, r .6s var(--ease-spring); }
.lotus.is-bloom .petal-fill { fill: var(--gold) !important; }
.lotus.is-bloom .lotus-core { fill: var(--gold-soft); }
.lotus.is-bloom { animation: bloom 1.2s var(--ease-spring); }
@keyframes bloom { 40% { transform: scale(1.08) rotate(12deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- club ---------- */
.club { padding-top: clamp(72px, 10vw, 128px); padding-bottom: clamp(72px, 10vw, 128px); }
.club-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; padding: clamp(28px, 5vw, 64px); border-radius: 36px; background: var(--white); }
.club-demo { display: grid; justify-items: center; gap: 18px; }
.lotus--demo { width: min(100%, 360px); }
.demo-count { font-family: var(--f-display); font-weight: 600; color: var(--slate); min-height: 1.6em; text-align: center; }
.demo-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.club-copy .lead { margin-top: 16px; }
.steps { margin: 32px 0; display: grid; gap: 18px; counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 2px 14px; }
.steps li::before { content: counter(step); grid-row: span 2; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--slate); font-family: var(--f-display); font-weight: 700; color: var(--slate); }
.steps h3 { font-family: var(--f-display); font-weight: 600; font-size: 1rem; color: var(--slate); align-self: end; }
.steps p { color: var(--gibraltar); font-size: .95rem; }
.founding { display: flex; gap: 16px; align-items: center; padding: 18px 20px; margin-bottom: 28px; border-radius: var(--r-md); border: 1.5px solid var(--gold-soft); background: linear-gradient(120deg, rgba(217, 198, 156, .22), transparent 70%); }
.founding img { flex: none; width: 58px; }
.founding h3, .founding h2 { font-family: var(--f-display); font-weight: 600; font-size: 1rem; color: var(--slate); }
.founding p { font-size: .92rem; color: var(--gibraltar); }
.tiers { margin-top: 56px; }
.tier-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.tier { display: grid; gap: 12px; padding: 22px; border-radius: var(--r-md); border: 1px solid var(--olympus); background: rgba(251, 252, 251, .55); }
.tier h4 { font-family: var(--f-display); font-weight: 600; color: var(--slate); }
.tier p { font-size: .9rem; color: var(--gibraltar); }
.lotus--mini { width: 64px; }
.lotus--mini .lotus-ring { animation: none; }
.tier--golden { border-color: var(--gold-soft); }
.tier--golden .petal-fill { fill: var(--gold) !important; }

@media (max-width: 960px) {
  .club-grid { grid-template-columns: 1fr; }
  .tier-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) { .tier-list { grid-template-columns: 1fr; } .tier { grid-template-columns: 56px 1fr; align-items: center; } .lotus--mini { width: 52px; } }

/* ---------- story ---------- */
.story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: center; padding-top: 24px; padding-bottom: clamp(72px, 10vw, 128px); }
.arch--story { aspect-ratio: 100 / 130; }
.arch--story img { object-position: 72% 50%; }
.story-copy p { margin-top: 20px; max-width: 58ch; font-size: 1.06rem; color: var(--gibraltar); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .arch--story { width: min(76%, 340px); } }

/* ---------- visit ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-top: 72px; padding-bottom: 96px; border-top: 1px solid var(--olympus); }
.visit address { font-style: normal; font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; color: var(--slate); margin: 22px 0 12px; }
.visit p { max-width: 50ch; }
.visit .muted { margin-top: 6px; }
.visit-art img { width: min(100%, 440px); margin-left: auto; filter: drop-shadow(0 30px 40px rgba(38, 48, 58, .18)); mix-blend-mode: multiply; }
@media (max-width: 860px) { .visit { grid-template-columns: 1fr; } .visit-art img { margin: 0 auto; width: 70%; } }

/* ---------- footer ---------- */
.foot { background: var(--slate); color: var(--lazy); }
.foot-inner { max-width: var(--wrap); margin: 0 auto; padding: 72px var(--gutter) 36px; display: grid; gap: 48px; }
.foot-brand { display: flex; align-items: center; gap: 22px; }
.foot-brand img { width: 96px; }
.foot-word { font-family: var(--f-display); font-weight: 800; font-size: 1.6rem; color: var(--white); letter-spacing: -.02em; }
.foot-tag { color: var(--fog); }
.foot-cols { display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; gap: 32px; }
.foot-cols nav { display: grid; gap: 8px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.lang-switch--foot { border-color: rgba(212, 216, 215, .25); align-self: start; flex-wrap: wrap; }
.lang-switch--foot a { color: var(--lazy); }
.lang-switch--foot a[aria-current] { background: var(--olympus); color: var(--slate); }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(212, 216, 215, .16); font-size: .86rem; color: var(--fog); }
@media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr; } }

/* ---------- forms (rewards / staff) ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label, .field legend { font-weight: 600; font-size: .92rem; color: var(--slate); }
fieldset.field { border: 0; padding: 0; margin: 0; }
.field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.field-row > .field { flex: 1 1 180px; }
fieldset.field-row legend { width: 100%; margin-bottom: 6px; }
.field input, .field select, .staff-row input {
  min-height: 50px; padding: 0 16px; border-radius: 14px; border: 1.5px solid var(--lazy); background: var(--white); outline: none; width: 100%;
}
fieldset.field-row select { width: auto; flex: 1; }
.field input:focus, .field select:focus, .staff-row input:focus { border-color: var(--slate); box-shadow: 0 0 0 4px rgba(62, 75, 84, .12); }
.field small { color: var(--gibraltar); font-size: .82rem; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--gibraltar); cursor: pointer; }
.check input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--slate); }
.check a { color: var(--slate); }

/* ---------- rewards page ---------- */
.rewards { padding-top: 48px; padding-bottom: 96px; }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.join-intro .lead { margin: 16px 0 28px; }
.lotus--hero-join { width: min(70%, 280px); margin: 12px 0 36px; }
.join-forms { display: grid; gap: 40px; padding: clamp(24px, 4vw, 44px); border-radius: 32px; background: var(--white); }
.form--signin { padding-top: 32px; border-top: 1px solid var(--olympus); }
@media (max-width: 900px) { .join-grid { grid-template-columns: 1fr; } .lotus--hero-join { display: none; } }

.card-wrap { max-width: 560px; margin: 0 auto; display: grid; gap: 20px; justify-items: stretch; }
.card-wrap > .btn-ghost { justify-self: center; }
.mcard { position: relative; overflow: hidden; display: grid; gap: 20px; padding: 28px; border-radius: 32px; background: var(--slate); color: var(--olympus); box-shadow: 0 40px 60px -40px rgba(38, 48, 58, .7); }
.mcard::before { content: ""; position: absolute; inset: -40% -30% auto auto; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(212, 216, 215, .14), transparent 65%); pointer-events: none; }
.tier-bg--golden { background: linear-gradient(150deg, #3E4B54 0%, #2F3A42 60%, #4A4233 100%); border: 1.5px solid var(--gold); }
.tier-bg--lotus { background: linear-gradient(150deg, #3E4B54, #2A343C); }
.mcard-head { display: flex; gap: 14px; align-items: center; }
.mcard-name { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--white); }
.mcard-tier { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--fog); font-size: .9rem; }
.pill-gold { padding: 2px 10px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: .74rem; font-weight: 700; }
.mcard-lotus { position: relative; display: grid; place-items: center; }
.lotus--card { width: min(78%, 300px); }
.lotus--card .lotus-ring { stroke: rgba(212, 216, 215, .3); }
.lotus--card .petal-ghost { stroke: rgba(212, 216, 215, .45); }
.lotus--card .petal-fill { fill: var(--olympus); }
.lotus--card .petal:nth-child(odd of .petal).is-open .petal-fill { fill: var(--lazy); }
.lotus--card .petal-vein { stroke: rgba(62, 75, 84, .5); }
.lotus--card .lotus-core { fill: var(--slate); stroke: var(--olympus); }
.mcard-count { position: absolute; font-family: var(--f-display); font-size: .7rem; color: var(--olympus); pointer-events: none; }
.mcard-count strong { font-size: .95rem; color: var(--white); }
.mcard-left { text-align: center; color: var(--lazy); }
.bloom-ready { text-align: center; padding: 12px 16px; border-radius: 999px; background: var(--gold); color: var(--ink); font-weight: 700; animation: pop .8s var(--ease-spring) both; }
.mcard-qr { display: grid; justify-items: center; gap: 12px; padding: 22px; border-radius: 24px; background: var(--white); color: var(--ink); text-align: center; }
.mcard-qr canvas { width: 200px; height: 200px; image-rendering: pixelated; }
.mcard-code { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 10px; }
.mcard-code span { font-size: .8rem; color: var(--gibraltar); }
.mcard-code strong { font-family: var(--f-display); font-size: 1.1rem; letter-spacing: .04em; color: var(--slate); }
.mcard-foot { display: grid; gap: 8px; }
.mcard-foot .muted { color: var(--fog); }
.progress { height: 6px; border-radius: 999px; background: rgba(212, 216, 215, .2); overflow: hidden; }
.progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--olympus), var(--gold-soft)); }
.history ul { display: grid; margin-top: 10px; }
.history li { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--olympus); font-size: .92rem; }
.hist-delta { font-family: var(--f-display); font-weight: 600; color: var(--slate); }
.history time { color: var(--gibraltar); font-variant-numeric: tabular-nums; }

/* ---------- staff ---------- */
.staff { padding-top: 40px; padding-bottom: 80px; }
.staff-login { max-width: 380px; margin-top: 28px; }
.staff-app { margin-top: 28px; }
.staff-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: start; }
.staff-scan, .staff-side { display: grid; gap: 16px; padding: 24px; border-radius: 28px; background: var(--white); }
.staff-row { display: flex; flex-wrap: wrap; gap: 10px; }
.staff-row input { flex: 1 1 200px; width: auto; text-transform: uppercase; }
.scanner { position: relative; border-radius: 22px; overflow: hidden; background: var(--ink); aspect-ratio: 4 / 3; }
.scanner video { width: 100%; height: 100%; object-fit: cover; }
.scanner-frame { position: absolute; inset: 18%; border: 3px solid var(--gold); border-radius: 18px; box-shadow: 0 0 0 999px rgba(38, 48, 58, .35); }
.staff-member { display: grid; gap: 16px; padding: 20px; border-radius: 22px; background: var(--paper); animation: rise .5s var(--ease-out); }
.staff-member-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.staff-lotus .lotus { width: 110px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stats div { padding: 12px 14px; border-radius: 14px; background: var(--paper); }
.stats dt { font-size: .78rem; color: var(--gibraltar); }
.stats dd { margin: 0; font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; color: var(--slate); }
.recent { display: grid; font-size: .86rem; max-height: 320px; overflow: auto; }
.recent li { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--olympus); }
.staff-exports { display: grid; gap: 6px; font-size: .9rem; }
@media (max-width: 900px) { .staff-grid { grid-template-columns: 1fr; } }

/* ---------- prose ---------- */
.prose { max-width: 760px; padding-top: 56px; padding-bottom: 96px; }
.prose h2 { margin-top: 28px; margin-bottom: 6px; }
.prose p { color: var(--gibraltar); }
.prose--center { display: grid; justify-items: center; gap: 20px; text-align: center; }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 90; transform: translate(-50%, 20px); opacity: 0; padding: 14px 22px; border-radius: 999px; background: var(--ink); color: var(--white); font-weight: 600; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .5); transition: transform .4s var(--ease-spring), opacity .3s; pointer-events: none; max-width: calc(100vw - 32px); text-align: center; }
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }
.toast.is-gold { background: var(--gold); color: var(--ink); }

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

/* =========================================================
   MENU SUBPAGES: /menu, /menu/{category}, /menu/{category}/{dish}
   ========================================================= */
.mpage { max-width: var(--wrap); margin: 0 auto; padding: 20px var(--gutter) 96px; }
.nav-links > a[aria-current]:not(.btn)::after { transform: scaleX(1); }

/* breadcrumbs */
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; font-size: .86rem; color: var(--gibraltar); }
.crumbs li { display: flex; align-items: center; }
.crumbs li + li::before { content: ""; width: 6px; height: 6px; margin: 0 12px; border-right: 1.5px solid var(--fog); border-top: 1.5px solid var(--fog); transform: rotate(45deg); }
.crumbs a { color: var(--gibraltar); text-decoration: none; }
.crumbs a:hover { color: var(--slate); text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: var(--slate); font-weight: 600; }

.eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .86rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.eyebrow a { color: var(--gibraltar); text-decoration: none; }
.eyebrow a:hover { color: var(--slate); }
.eyebrow .dish-no { text-transform: none; letter-spacing: 0; }
.mpage-head { padding: clamp(32px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); display: grid; gap: 18px; }
.mpage-title { font-size: clamp(2.3rem, 5.4vw, 4.4rem); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.band-title { margin-bottom: 22px; }
.mband { margin-top: clamp(56px, 8vw, 96px); }
.mband-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 8px 24px; margin-bottom: 22px; }
.mband-head .band-title { margin-bottom: 0; }
.mband-head > p { flex-basis: 100%; }
.btn-line svg, .btn svg { flex: none; }

/* category cards (overview) */
.catgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.catcard { position: relative; display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 20px; align-items: center; height: 100%; padding: 18px 22px 18px 18px; border-radius: var(--r-lg); background: var(--white); text-decoration: none; color: inherit; transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease-out); }
.catcard:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -30px rgba(38, 48, 58, .55); }
.catcard-art { width: 112px; aspect-ratio: 100 / 130; }
.catcard-art img { transition: transform 1.2s var(--ease-out); }
.catcard:hover .catcard-art img { transform: scale(1.1) rotate(8deg); }
.catcard-body { display: grid; gap: 4px; padding-right: 30px; }
.catcard-count { font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.catcard-name { color: var(--slate); }
.catcard-sub { font-size: .9rem; color: var(--gibraltar); line-height: 1.45; }
.catcard-go { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); transition: background-color .3s, transform .45s var(--ease-spring); }
.catcard-go svg { width: 18px; height: 18px; fill: none; stroke: var(--slate); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.catcard:hover .catcard-go { background: var(--gold-soft); transform: translateX(4px); }

/* dish cards */
.dgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.dgrid--cat { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.dgrid--pairs { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; }
.dcard { position: relative; }
.dcard-link { display: grid; gap: 16px; height: 100%; padding: 22px; border-radius: var(--r-lg); background: var(--white); text-decoration: none; color: inherit; transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease-out); }
.dcard-link:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -30px rgba(38, 48, 58, .55); }
.dcard-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.dgrid--pairs .dcard-link, .dgrid--cat .dcard-link { grid-template-columns: 112px minmax(0, 1fr); align-items: center; }
.dcard-plate { position: relative; justify-self: center; width: min(100%, 150px); aspect-ratio: 1; }
.dgrid--pairs .dcard-plate, .dgrid--cat .dcard-plate { width: 112px; }
.dcard-img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: var(--paper-2); box-shadow: 0 14px 26px -16px rgba(38, 48, 58, .7); transition: transform .9s var(--ease-spring); }
.dcard-img.dish-img--empty { background: var(--paper-2) url(../img/mark.svg) center / 46% no-repeat; box-shadow: inset 0 0 0 1px var(--olympus); }
.dcard-link:hover .dcard-img { transform: rotate(30deg) scale(1.05); }
.dcard-no { position: absolute; left: -4px; top: -2px; display: grid; place-items: center; min-width: 36px; height: 26px; padding: 0 7px; border-radius: 9px; background: var(--slate); color: var(--white); font-family: var(--f-display); font-size: .72rem; font-weight: 600; }
.dcard-body { display: grid; gap: 6px; align-content: start; }
.dcard.is-fav .dcard-name { padding-right: 30px; }
.dcard-name { display: flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em; color: var(--slate); line-height: 1.2; }
.dcard-desc { font-size: .88rem; color: var(--gibraltar); line-height: 1.45; }
.dcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.dcard-price { font-family: var(--f-display); font-weight: 700; color: var(--slate); font-variant-numeric: tabular-nums; }
.dcard-fav { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(217, 198, 156, .35); }
.dcard-fav svg { width: 14px; height: 14px; fill: var(--gold); }

/* spice meter */
.spice { display: inline-flex; align-items: center; gap: 2px; }
.chili { width: 17px; height: 17px; fill: none; stroke: var(--lazy); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.chili.is-on { fill: #B4553E; stroke: #B4553E; }
.spice[data-level="0"] .chili { opacity: .6; }
.spice-label { margin-left: 8px; font-weight: 600; font-size: .95rem; color: var(--slate); }

/* category hero */
.cat-hero { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 6vw, 88px); align-items: center; padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 36px); }
.cat-hero-copy { display: grid; gap: 16px; }
.cat-intro { max-width: 62ch; color: var(--slate); font-size: 1.02rem; line-height: 1.7; }
.cat-hero-art { position: relative; justify-self: center; width: min(100%, 320px); }
.arch--cat { aspect-ratio: 100 / 130; animation: archIn 1.2s var(--ease-out) both; }
.arch--cat img { animation: zoomOut 2s var(--ease-out) both; }
.cat-hero-badge { position: absolute; right: -26px; bottom: 18%; width: 92px; filter: drop-shadow(0 12px 18px rgba(38, 48, 58, .28)); animation: pop .9s var(--ease-spring) both .5s; }
.cat-hero-copy > * { animation: rise .8s var(--ease-out) both; }
.cat-hero-copy > :nth-child(2) { animation-delay: .06s; }
.cat-hero-copy > :nth-child(3) { animation-delay: .12s; }
.cat-hero-copy > :nth-child(4) { animation-delay: .18s; }
.chips--static { margin: 8px 0 0; padding-bottom: 14px; border-bottom: 1px solid var(--olympus); flex: none; }
.back-link { margin-top: 40px; text-align: center; }

/* Lotus Club band */
.club-band { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px 36px; margin-top: clamp(56px, 8vw, 96px); padding: clamp(24px, 4vw, 40px); border-radius: 32px; background: var(--slate); color: var(--lazy); overflow: hidden; }
.club-band .display { color: var(--white); }
.club-band p { margin-top: 6px; max-width: 56ch; }
.lotus--band { width: 108px; }
.lotus--band .lotus-ring { stroke: rgba(212, 216, 215, .3); }
.lotus--band .petal-ghost { stroke: rgba(212, 216, 215, .45); }
.lotus--band .petal-fill { fill: var(--olympus); }
.lotus--band .petal:nth-child(odd of .petal).is-open .petal-fill { fill: var(--gold-soft); }
.lotus--band .lotus-core { fill: var(--gold); stroke: var(--olympus); }
.menu-page .order-strip { margin-top: clamp(48px, 7vw, 80px); }

/* home menu rows link to dish pages */
.dish { position: relative; }
.dish-link { color: inherit; text-decoration: none; }
.dish-link::after { content: ""; position: absolute; inset: 0; border-radius: 12px; }
.dish-link:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.dish-link:focus-visible::after { outline: 3px solid var(--gold); outline-offset: 2px; }
.cat-head { position: relative; }
.cat-more { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; color: var(--slate); text-decoration: none; }
.cat-more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease-spring); }
.cat-more:hover svg { transform: translateX(4px); }
.menu .section-head .btn { align-self: center; }

/* ---------- dish detail ---------- */
.dhero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 6vw, 96px); align-items: center; padding: clamp(28px, 5vw, 56px) 0 clamp(32px, 5vw, 64px); }
.dhero-copy { display: grid; gap: 18px; }
.dhero-copy > * { animation: rise .8s var(--ease-out) both; }
.dhero-copy > :nth-child(2) { animation-delay: .06s; }
.dhero-copy > :nth-child(3) { animation-delay: .12s; }
.dhero-copy > :nth-child(4) { animation-delay: .18s; }
.dhero-copy > :nth-child(5) { animation-delay: .24s; }
.dhero-title { font-size: clamp(2.3rem, 5.6vw, 4.6rem); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.dhero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: .86rem; font-weight: 600; }
.pill-veg { background: rgba(95, 126, 85, .12); color: var(--veg); }
.pill-fav { background: rgba(217, 198, 156, .4); color: #7A6232; }
.pill-fav svg { width: 14px; height: 14px; fill: var(--gold); }
.dfacts { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 12px; margin-top: 8px; }
.dfact { display: grid; gap: 6px; align-content: start; padding: 14px 18px; border-radius: var(--r-md); background: var(--white); }
.dfact dt { font-size: .76rem; color: var(--gibraltar); max-width: 16ch; line-height: 1.3; }
.dfact dd { margin: 0; display: flex; align-items: center; min-height: 32px; }
.dfact--price { background: var(--slate); }
.dfact--price dt { color: var(--lazy); }
.dfact--price dd { font-family: var(--f-display); font-weight: 700; font-size: 1.7rem; color: var(--white); font-variant-numeric: tabular-nums; }
.dfact-no { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--slate); }

.dhero-art { position: relative; justify-self: center; width: min(100%, 440px); }
.dplate-wrap { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.dplate-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px dashed var(--fog); animation: spin 60s linear infinite; }
.dplate-ring::before { content: ""; position: absolute; top: -6px; left: 50%; width: 11px; height: 11px; margin-left: -5.5px; border-radius: 50%; background: var(--gold); }
.dplate { width: 84%; height: 84%; border-radius: 50%; object-fit: cover; background: var(--paper-2); box-shadow: 0 40px 60px -34px rgba(38, 48, 58, .75); animation: plateIn 1.4s var(--ease-spring) both .1s; transition: transform 1.6s var(--ease-out); }
.dplate-wrap:hover .dplate { transform: rotate(40deg); }
.dplate.dish-img--empty { background: var(--slate) url(../img/mark.svg) center / 34% no-repeat; box-shadow: 0 40px 60px -34px rgba(38, 48, 58, .75), inset 0 0 0 10px rgba(212, 216, 215, .08); }
.dhero-badge { position: absolute; right: 2%; bottom: 4%; width: 96px; filter: drop-shadow(0 12px 18px rgba(38, 48, 58, .3)); animation: pop .9s var(--ease-spring) both .8s; }
@keyframes plateIn { from { opacity: 0; transform: rotate(-70deg) scale(.82); } to { opacity: 1; transform: none; } }

.dbody { display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: start; }
.dstory, .dside { padding: clamp(24px, 4vw, 40px); border-radius: 32px; background: var(--white); }
.dstory-text { margin-top: 16px; font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.75; color: var(--slate); max-width: 64ch; }
.dstory-text::first-letter { font-family: var(--f-display); font-weight: 700; font-size: 3.1em; float: left; line-height: .82; margin: 4px 10px 0 0; color: var(--gold); }
.dtip { display: flex; gap: 16px; align-items: flex-start; margin-top: 28px; padding: 18px 20px; border-radius: var(--r-md); background: var(--paper); }
.dtip svg { flex: none; width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dtip p { color: var(--gibraltar); margin-top: 2px; }
.dside { display: grid; gap: 14px; }
.notes { display: flex; flex-wrap: wrap; gap: 8px; }
.notes li { padding: 7px 14px; border-radius: 999px; border: 1.5px solid var(--olympus); font-size: .9rem; font-weight: 500; color: var(--slate); animation: pop .6s var(--ease-spring) both; animation-delay: calc(.35s + var(--i) * .07s); transition: border-color .2s, background-color .2s; }
.notes li:hover { border-color: var(--gold); background: rgba(217, 198, 156, .2); }

.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(56px, 8vw, 96px); padding-top: 28px; border-top: 1px solid var(--olympus); }
.pager-link { display: grid; gap: 6px; padding: 18px 22px; border-radius: var(--r-md); text-decoration: none; color: inherit; transition: background-color .25s; }
.pager-link:hover { background: var(--white); }
.pager-link--next { text-align: right; justify-items: end; }
.pager-dir { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gibraltar); }
.pager-dir svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease-spring); }
.pager-link:hover .pager-dir svg { transform: translateX(-4px); }
.pager-link--next:hover .pager-dir svg { transform: translateX(4px); }
.pager-name { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--slate); }

/* reveal on scroll (JS adds .is-in; without JS everything stays visible) */
.js [data-rise] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); transition-delay: calc(var(--d, 0) * 70ms); }
.js [data-rise].is-in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .catgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dgrid--cat { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .cat-hero, .dhero, .dbody { grid-template-columns: 1fr; }
  .cat-hero-art { order: -1; width: min(70%, 260px); }
  .dhero-art { order: -1; width: min(86%, 380px); }
  .club-band { grid-template-columns: 1fr; justify-items: start; }
  .lotus--band { width: 84px; }
}
@media (max-width: 700px) {
  .catgrid, .dgrid, .dgrid--cat, .dgrid--pairs { grid-template-columns: 1fr; }
  .dgrid .dcard-link { grid-template-columns: 96px minmax(0, 1fr); align-items: center; padding: 16px; }
  .dgrid .dcard-plate { width: 96px; }
  .catcard { grid-template-columns: 88px minmax(0, 1fr); }
  .catcard-art { width: 88px; }
  .dfacts { grid-template-columns: 1fr 1fr; }
  .dfact--price { grid-column: 1 / -1; }
  .pager { grid-template-columns: 1fr; }
  .pager-link--next { text-align: left; justify-items: start; }
  .cat-more { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .js [data-rise] { opacity: 1; transform: none; }
}

/* home menu rows: visible "open" affordance */
.dish-go { width: 18px; height: 18px; fill: none; stroke: var(--fog); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease-spring), stroke .2s; }
.dish:hover .dish-go { stroke: var(--gold); transform: translateX(4px); }
.dish { transition: background-color .2s; border-radius: 0; }
.dish:hover { background: linear-gradient(90deg, transparent, rgba(251, 252, 251, .7) 20%, rgba(251, 252, 251, .7) 80%, transparent); }

/* =========================================================
   CONTENT PAGES: /club, /story, /konyaalti
   ========================================================= */
.phero { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(28px, 5vw, 64px) 0 clamp(40px, 6vw, 80px); }
.phero-copy { display: grid; gap: 20px; }
.phero-copy > * { animation: rise .8s var(--ease-out) both; }
.phero-copy > :nth-child(2) { animation-delay: .06s; }
.phero-copy > :nth-child(3) { animation-delay: .12s; }
.phero-copy > :nth-child(4) { animation-delay: .18s; }
.phero-copy .hero-actions { margin-top: 8px; }
.mpage-title--long { font-size: clamp(2rem, 4.6vw, 3.8rem); }
.phero-art { position: relative; justify-self: center; width: min(100%, 420px); }
.arch--page { aspect-ratio: 100 / 130; animation: archIn 1.3s var(--ease-out) both .05s; }
.arch--page img { animation: zoomOut 2.2s var(--ease-out) both .05s; }
.arch--scene svg { display: block; width: 100%; height: 100%; }
.year-seal { position: absolute; left: -26px; bottom: 40px; display: grid; justify-items: center; gap: 0; padding: 16px 20px; border-radius: 22px; background: var(--slate); color: var(--lazy); box-shadow: 0 22px 40px -22px rgba(38, 48, 58, .7); animation: pop .9s var(--ease-spring) both .9s; }
.year-seal b { font-family: var(--f-display); font-weight: 800; font-size: 1.9rem; color: var(--white); letter-spacing: -.02em; line-height: 1.05; }
.year-seal span { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.year-seal--gold { background: var(--gold); color: var(--ink); left: auto; right: -22px; }
.year-seal--gold b { color: var(--ink); }

.psec { margin-top: clamp(56px, 8vw, 104px); }
.big-p { margin-top: 14px; font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.75; color: var(--slate); max-width: 64ch; }
.pcard { position: relative; display: grid; gap: 10px; align-content: start; padding: 26px; border-radius: var(--r-lg); background: var(--white); transition: transform .45s var(--ease-spring), box-shadow .45s var(--ease-out); }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -30px rgba(38, 48, 58, .5); }
.pcard p { color: var(--gibraltar); font-size: .95rem; line-height: 1.6; }
.pcard-no { font-family: var(--f-display); font-weight: 700; font-size: .82rem; color: var(--gold); }
.cards3, .cards4 { display: grid; gap: 18px; }
.cards3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.source-note { margin-top: 20px; max-width: 70ch; }
.page-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(56px, 8vw, 96px); }

/* club page */
.club-demo--page { padding: clamp(24px, 4vw, 40px); border-radius: 36px; background: var(--white); text-align: center; }
.club-demo--page .lotus--demo { width: min(100%, 300px); }
.steps--row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin: 28px 0 0; }
.steps--row li { padding: 24px; border-radius: var(--r-lg); background: var(--white); }
.founding--wide { margin: 24px 0 0; max-width: 720px; }
.faq-list { display: grid; gap: 10px; max-width: 860px; }
.faq-item { border-radius: var(--r-md); background: var(--white); overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; font-family: var(--f-display); font-weight: 600; color: var(--slate); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--paper); transition: transform .4s var(--ease-spring), background-color .2s; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 2px; background: var(--slate); }
.faq-item summary i::after { transform: rotate(90deg); transition: transform .3s var(--ease-out); }
.faq-item[open] summary i { transform: rotate(180deg); background: var(--gold-soft); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item p { padding: 0 24px 22px; color: var(--gibraltar); max-width: 70ch; animation: rise .45s var(--ease-out); }
.faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.faq-privacy { margin-top: 14px; }
.club-band--big { margin-top: clamp(56px, 8vw, 104px); }

/* story page */
.meaning { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(28px, 4vw, 48px); border-radius: 36px; background: var(--white); }
.meaning-art { position: relative; height: 150px; overflow: hidden; border-radius: 24px; background: var(--slate); }
.meaning-boat { position: absolute; left: 50%; bottom: 36px; width: 150px; margin-left: -75px; animation: bob 3.2s ease-in-out infinite; }
.meaning-boat path { fill: none; stroke: var(--gold-soft); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.meaning-boat .boat-hull { fill: rgba(217, 198, 156, .2); }
.meaning-water { position: absolute; left: 0; right: 0; bottom: 38px; height: 2px; background: repeating-linear-gradient(90deg, rgba(212, 216, 215, .4) 0 14px, transparent 14px 26px); animation: water 3s linear infinite; }
.word-art { display: grid; place-items: center; align-content: center; height: 150px; border-radius: 24px; background: var(--slate); font-family: var(--f-display); font-weight: 800; line-height: .95; letter-spacing: -.03em; }
.word-art span:first-child { font-size: 2.6rem; color: var(--white); }
.word-art span:last-child { font-size: 2.6rem; color: var(--gold); }

.timeline { position: relative; display: grid; gap: 14px; }
.timeline::before { content: ""; position: absolute; left: 132px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--olympus), var(--gold-soft)); }
.tl-item { position: relative; display: grid; grid-template-columns: 132px 1fr; gap: 0 44px; align-items: start; }
.tl-item::before { content: ""; position: absolute; left: 126px; top: 26px; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); border: 2px solid var(--slate); z-index: 1; }
.tl-item--now::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 0 rgba(184, 151, 90, .7); animation: pulse 2.4s infinite; }
.tl-year { padding-top: 18px; font-family: var(--f-display); font-weight: 700; font-size: 1rem; color: var(--gibraltar); text-align: right; padding-right: 22px; line-height: 1.2; }
.tl-item--now .tl-year { color: var(--gold); }
.tl-body { padding: 20px 26px; border-radius: var(--r-lg); background: var(--white); }
.tl-body p { margin-top: 6px; color: var(--gibraltar); line-height: 1.65; max-width: 68ch; }
.tl-item--now .tl-body { background: var(--slate); }
.tl-item--now .tl-body .display { color: var(--white); }
.tl-item--now .tl-body p { color: var(--lazy); }

.route-band { position: relative; height: 170px; margin: clamp(56px, 8vw, 96px) calc(var(--gutter) * -1) 0; border-radius: 36px; background: var(--slate); overflow: hidden; }
.route-band .boat-line { height: 150px; }

/* konyaalti page */
.scene-sun { animation: sunset 14s ease-in-out infinite alternate; }
@keyframes sunset { from { transform: translateY(-18px); } to { transform: translateY(14px); } }
.scene-waves { animation: waves 6s linear infinite; }
@keyframes waves { to { transform: translateX(-40px); } }
.scene-boat { animation: sail 22s ease-in-out infinite alternate; }
.scene-boat > g { animation: none; }
@keyframes sail { from { transform: translate(-150px, 0); } to { transform: translate(120px, 10px); } }

.liman { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-top: clamp(56px, 8vw, 104px); padding: clamp(28px, 5vw, 56px); border-radius: 36px; background: var(--slate); color: var(--lazy); }
.liman .display { color: var(--white); }
.liman .big-p { color: var(--olympus); }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.facts div { padding: 18px; border-radius: var(--r-md); border: 1px solid rgba(212, 216, 215, .22); background: rgba(251, 252, 251, .04); }
.facts dt { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--gold-soft); }
.facts dd { margin: 4px 0 0; font-size: .9rem; color: var(--lazy); line-height: 1.45; }
.corner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: clamp(56px, 8vw, 104px); padding-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--olympus); }
.corner address { font-style: normal; font-family: var(--f-display); font-size: 1.25rem; font-weight: 600; color: var(--slate); margin: 18px 0 12px; }
.corner p { max-width: 52ch; }
.corner .muted { margin-top: 6px; }
.corner img { width: min(100%, 420px); margin-left: auto; mix-blend-mode: multiply; filter: drop-shadow(0 30px 40px rgba(38, 48, 58, .18)); }

@media (max-width: 1000px) {
  .cards4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .phero, .liman, .corner { grid-template-columns: 1fr; }
  .phero-art { order: -1; width: min(78%, 340px); }
  .steps--row { grid-template-columns: 1fr; }
  .cards3 { grid-template-columns: 1fr; }
  .meaning { grid-template-columns: 1fr; }
  .corner img { margin: 0 auto; width: 70%; }
  .year-seal { left: -12px; bottom: 24px; padding: 12px 16px; }
  .year-seal--gold { left: auto; right: -12px; }
  .year-seal b { font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .cards4, .facts { grid-template-columns: 1fr; }
  .timeline::before { left: 7px; }
  .tl-item { grid-template-columns: 1fr; padding-left: 30px; }
  .tl-item::before { left: 1px; top: 4px; }
  .tl-year { text-align: left; padding: 0 0 8px; }
  .route-band { border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scene-sun, .scene-waves, .scene-boat, .meaning-boat, .meaning-water { animation: none; }
}
