/* BAZ'ART design system: a sketchbook.
   Paper pages and black pages, ink hairlines, one blue for the pen, and faces
   drawn in a single line like the logo. Dolce Vita (display) / Garet (text) /
   Daniel (hand-written notes). */

@font-face { font-family: 'Dolce Vita'; src: url('/fonts/dolcevita-heavy.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Dolce Vita'; src: url('/fonts/dolcevita-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Dolce Vita'; src: url('/fonts/dolcevita-light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Garet'; src: url('/fonts/garet-book.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Garet'; src: url('/fonts/garet-heavy.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Daniel'; src: url('/fonts/daniel-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Daniel'; src: url('/fonts/daniel-bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --paper: #f3f0e8;
  --paper-2: #e9e5da;
  --ink: #111111;
  --ink-2: #2b2b29;
  --muted: #6b6b66;
  --line: #111111;
  --line-soft: rgba(17, 17, 17, 0.16);
  --blue: #2138e8;
  --blue-deep: #1526b8;
  --night: #0e0e0e;
  --night-2: #171716;
  --night-line: rgba(243, 240, 232, 0.18);
  --night-text: #f3f0e8;
  --night-muted: #a9a79f;
  --display: 'Dolce Vita', 'Arial Narrow', sans-serif;
  --body: 'Garet', 'Segoe UI', Arial, sans-serif;
  --hand: 'Daniel', 'Segoe Print', cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--blue); color: #fff; }
.hidden, [hidden] { display: none !important; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
section { padding: 120px 0; position: relative; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 700; color: var(--ink); line-height: 0.96; text-transform: uppercase; letter-spacing: 0.02em; }
.section-title { font-size: clamp(42px, 6.2vw, 92px); margin: 14px 0 22px; }
.section-title em, .t-hand { font-family: var(--hand); font-style: normal; text-transform: none; letter-spacing: 0; color: var(--blue); font-weight: 400; font-size: 0.78em; line-height: 1; vertical-align: 0.02em; }
.section-sub { color: var(--muted); max-width: 560px; }
.kicker { display: flex; align-items: center; gap: 14px; font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink); }
.kicker .no { font-family: var(--display); font-weight: 300; font-size: 22px; letter-spacing: 0.08em; color: var(--muted); }
.kicker::after { content: ''; width: 46px; height: 1px; background: var(--ink); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .section-sub { margin: 0 auto; }
.muted { color: var(--muted); }
.hand { font-family: var(--hand); }

/* Night pages */
.night { background: var(--night); color: var(--night-muted); }
.night h1, .night h2, .night h3, .night .kicker { color: var(--night-text); }
.night .kicker::after { background: var(--night-text); }
.night .kicker .no { color: var(--night-muted); }
.night .section-sub { color: var(--night-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; border: 1px solid var(--ink); background: transparent; color: var(--ink);
  font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.solid { background: var(--ink); color: var(--paper); }
.btn.solid:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.ghost { border-color: var(--line-soft); }
.btn.ghost:hover { border-color: var(--ink); }
.btn.blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.blue:hover { background: var(--ink); border-color: var(--ink); }
.btn.danger { border-color: #b3382a; color: #b3382a; }
.btn.danger:hover { background: #b3382a; color: #fff; }
.btn.incomplete { opacity: 0.4; cursor: not-allowed; }
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.night .btn { border-color: var(--night-text); color: var(--night-text); }
.night .btn:hover { background: var(--night-text); color: var(--night); }
.night .btn.solid { background: var(--night-text); color: var(--night); }
.night .btn.solid:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.night .btn.ghost { border-color: var(--night-line); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--nav-h); transition: background 0.4s, border-color 0.4s, color 0.4s; color: var(--paper); }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.nav-logo img { height: 46px; width: auto; transition: filter 0.4s; }
.nav-logo img { filter: invert(1); }
.nav.scrolled, .nav.solid { background: var(--paper); border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.nav.scrolled .nav-logo img, .nav.solid .nav-logo img { filter: none; }
.nav-links { list-style: none; display: flex; gap: 26px; margin-left: 20px; }
.nav-links a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 6px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right 0.35s var(--ease); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-deals { color: var(--blue); }
.nav.scrolled .nav-links .nav-deals, .nav.solid .nav-links .nav-deals { color: var(--blue); }
.nav-right { list-style: none; margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-auth { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-auth.signed-in::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); margin-right: 8px; vertical-align: 1px; }
.nav-cta { display: inline-block; padding: 12px 20px; border: 1px solid currentColor; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; transition: 0.3s; }
.nav-cta:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.mobile-only { display: none; }
.lang-switch { display: inline-flex; border: 1px solid currentColor; }
.lang-switch button { background: none; border: 0; color: inherit; font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; padding: 8px 10px; opacity: 0.55; transition: 0.25s; }
.lang-switch button.active { opacity: 1; background: currentColor; }
.lang-switch button.active { color: var(--paper); }
.nav.scrolled .lang-switch button.active, .nav.solid .lang-switch button.active, .page-account .lang-switch button.active { color: var(--paper); background: var(--ink); }
.nav:not(.scrolled):not(.solid) .lang-switch button.active { background: var(--paper); color: var(--ink); }
.burger { display: none; width: 44px; height: 44px; margin-left: auto; background: none; border: 0; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: currentColor; transition: 0.3s; }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 29px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.menu-open { background: var(--paper); color: var(--ink); }
.nav.menu-open .nav-logo img { filter: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; background: var(--night); color: var(--night-text); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg video, .hero-bg img.kb { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0.15) 40%, rgba(14,14,14,0.85) 100%); }
.hero-content { position: relative; z-index: 2; padding: 150px 0 72px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); align-items: end; gap: 40px; }
.hero-eyebrow { font-family: var(--hand); font-size: 26px; color: var(--night-text); margin-bottom: 18px; }
.hero h1 { font-size: clamp(52px, 9.4vw, 148px); color: var(--night-text); letter-spacing: 0.01em; line-height: 0.9; max-width: 12ch; }
.hero-sub { margin: 26px 0 34px; max-width: 480px; color: var(--night-muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn { border-color: var(--night-text); color: var(--night-text); }
.hero .btn:hover { background: var(--night-text); color: var(--night); }
.hero .btn.solid { background: var(--night-text); color: var(--night); }
.hero .btn.solid:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.hero-art { justify-self: end; width: min(100%, 420px); }
.hero-art svg { width: 100%; height: auto; overflow: visible; }
.hero-side { position: absolute; right: 28px; top: 50%; z-index: 2; transform: translateY(-50%) rotate(90deg); transform-origin: right center; font-size: 11px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--night-muted); white-space: nowrap; }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; z-index: 2; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--night-muted); }
.hero-scroll span:last-child { width: 1px; height: 38px; background: var(--night-muted); animation: scrollcue 2.2s infinite; transform-origin: top; }
@keyframes scrollcue { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1) translateY(20px); opacity: 0; } }

/* Line drawings that draw themselves. The dash length is set per path by
   main.js from getTotalLength(); the class only starts the clock. */
.draw path, .draw circle, .draw line { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.draw .fill { fill: currentColor; stroke: none; opacity: 0; transition: opacity 0.6s 2.2s; }
.draw.on .fill { opacity: 1; }
.draw [data-len] { stroke-dashoffset: var(--len); stroke-dasharray: var(--len); }
.draw.on [data-len] { animation: draw 2.6s var(--ease) forwards; animation-delay: var(--delay, 0s); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero-art .draw { color: var(--night-text); }

/* ---------- Cartel (museum label) ---------- */
.cartel { border-top: 1px solid var(--line); padding-top: 12px; display: grid; gap: 2px; }
.cartel b { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.cartel span { font-family: var(--hand); font-size: 20px; color: var(--muted); }
.night .cartel { border-color: var(--night-line); }
.night .cartel b { color: var(--night-text); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 72px; align-items: start; }
.about-text p { font-size: 18px; color: var(--ink-2); max-width: 560px; }
.facts { list-style: none; margin-top: 40px; border-top: 1px solid var(--line); }
.facts li { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.facts b { font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.facts span { font-family: var(--hand); font-size: 22px; color: var(--blue); }
.about-visual { display: grid; gap: 26px; }
.frame { background: #fff; padding: 12px; border: 1px solid var(--line); }
.frame img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }
.frame.tall img { aspect-ratio: 4 / 5; }
.about-visual .frame + .cartel { margin-top: -10px; }
.about-face { position: absolute; right: 0; top: 100px; width: 200px; color: var(--ink); opacity: 0.9; }
.about-face svg { width: 100%; height: auto; }

/* ---------- Menu ---------- */
.menu-tabs { display: flex; justify-content: center; gap: 44px; margin-bottom: 52px; }
.menu-tabs button { background: none; border: 0; padding: 8px 0; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); position: relative; transition: color 0.3s; }
.menu-tabs button::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.menu-tabs button.active { color: var(--ink); }
.menu-tabs button.active::after { transform: scaleX(1); }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 72px; }
.menu-cat { border-top: 1px solid var(--line); padding-top: 22px; }
.menu-cat h3 { font-size: 26px; letter-spacing: 0.05em; margin-bottom: 4px; }
.menu-cat-sub { font-family: var(--hand); font-size: 20px; color: var(--muted); margin-bottom: 14px; }
.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; }
.mi-name { color: var(--ink); }
.mi-dots { flex: 1; border-bottom: 1px dotted var(--line-soft); transform: translateY(-5px); }
.mi-price { font-family: var(--display); font-weight: 400; font-size: 20px; letter-spacing: 0.04em; color: var(--ink); white-space: nowrap; }
.mi-price .mi-was { color: var(--muted); font-size: 0.8em; margin-right: 8px; }
.mi-price .mi-deal { color: var(--blue); font-weight: 700; }
.menu-item-desc { font-size: 14.5px; color: var(--muted); margin: -6px 0 8px; }
.menu-actions { text-align: center; margin-top: 56px; }
.promo-notice { text-align: center; margin: -20px auto 40px; padding: 12px 20px; border: 1px solid var(--blue); color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; max-width: 720px; }
.carte-lang { display: flex; justify-content: center; gap: 4px; margin: -10px 0 36px; }
.carte-lang button { background: none; border: 1px solid var(--line-soft); padding: 8px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); transition: 0.25s; }
.carte-lang button.active { border-color: var(--ink); color: var(--ink); }
.carte-lang button:hover { color: var(--ink); }

/* Menu page hero */
.page-hero { position: relative; min-height: 62svh; display: grid; align-items: end; padding: 160px 0 64px; background: var(--night); color: var(--night-text); overflow: hidden; }
.page-hero .hero-bg video { opacity: 0.45; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(56px, 10vw, 150px); color: var(--night-text); }
.page-hero .kicker { color: var(--night-text); margin-bottom: 16px; }
.page-hero .kicker::after { background: var(--night-text); }
.page-hero .section-sub { color: var(--night-muted); margin-top: 18px; }

/* ---------- Bar (night) ---------- */
.bar-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; align-items: center; }
.bar-art { color: var(--night-text); max-width: 380px; }
.bar-art svg { width: 100%; height: auto; overflow: visible; }
.bar-lead { font-size: 18px; max-width: 560px; margin-bottom: 36px; }
.signature { border: 1px solid var(--night-line); padding: 26px 28px; display: grid; grid-template-columns: 1fr auto; gap: 8px 24px; align-items: start; max-width: 560px; margin-bottom: 36px; }
.signature small { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-soft, #7f8cf0); }
.signature h3 { font-size: 34px; color: var(--night-text); }
.signature .price { font-family: var(--display); font-weight: 400; font-size: 30px; color: var(--night-text); }
.signature p { grid-column: 1 / -1; font-family: var(--hand); font-size: 22px; color: var(--night-muted); }

/* ---------- Vibes ---------- */
.vibe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.vibe-card { display: grid; gap: 14px; }
.vibe-card .frame { padding: 10px; }
.vibe-card .frame img { aspect-ratio: 3 / 4; filter: grayscale(1) contrast(1.05); transition: filter 0.7s var(--ease), transform 0.7s var(--ease); }
.vibe-card:hover .frame img { filter: none; }
.vibe-card:nth-child(2n) { transform: translateY(40px); }

/* ---------- Gallery ---------- */
.gal-wall { columns: 3; column-gap: 24px; }
.gal-wall .frame { break-inside: avoid; margin-bottom: 24px; cursor: zoom-in; padding: 10px; transition: transform 0.5s var(--ease), border-color 0.4s; }
.gal-wall .frame img { aspect-ratio: auto; transition: filter 0.6s; }
.gal-wall .frame:hover { border-color: var(--blue); }
.gal-wall .frame figcaption { font-family: var(--hand); font-size: 18px; color: var(--muted); padding: 10px 2px 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(14,14,14,0.96); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; border: 10px solid #fff; }
.lightbox button { position: absolute; background: none; border: 1px solid var(--night-line); color: var(--night-text); width: 52px; height: 52px; font-size: 22px; transition: 0.3s; }
.lightbox button:hover { border-color: var(--night-text); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Hours & map ---------- */
.info-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.hours-list { list-style: none; border-top: 1px solid var(--line); }
.hours-list li { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.hours-list .day { font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.hours-list .dots { flex: 1; border-bottom: 1px dotted var(--line-soft); transform: translateY(-5px); }
.hours-list .time { font-family: var(--display); font-size: 20px; color: var(--ink); }
.hours-list .closed { font-family: var(--hand); font-size: 20px; color: var(--muted); }
.contact-lines { margin-top: 30px; display: grid; gap: 10px; }
.contact-lines div { display: flex; gap: 12px; align-items: baseline; }
.contact-lines strong { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); min-width: 86px; }
.contact-lines a:hover { color: var(--blue); }
#map { height: 460px; border: 1px solid var(--line); filter: grayscale(1) contrast(1.05); background: var(--paper-2); }
.map-pin { width: 18px; height: 18px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--ink); }
.leaflet-popup-content-wrapper { border-radius: 0; font-family: var(--body); border: 1px solid var(--ink); box-shadow: none; }
.leaflet-popup-content a { color: var(--blue); }
.leaflet-container { font-family: var(--body); }

/* ---------- Contact band (night) ---------- */
.contact-lead { font-size: 18px; max-width: 600px; margin: 0 auto 44px; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.contact-card { border: 1px solid var(--night-line); padding: 24px 22px; display: flex; gap: 16px; align-items: center; text-align: left; transition: border-color 0.3s, transform 0.4s var(--ease); }
.contact-card:hover { border-color: var(--night-text); }
.cc-icon { width: 40px; height: 40px; border: 1px solid var(--night-line); display: grid; place-items: center; flex: none; }
.cc-icon svg { width: 16px; height: 16px; fill: var(--night-text); }
.cc-body { display: grid; gap: 2px; min-width: 0; }
.cc-body small { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--night-muted); }
.cc-body b { font-weight: 400; color: var(--night-text); font-size: 14px; overflow-wrap: anywhere; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 40px; }
.socials { display: flex; gap: 14px; justify-content: center; }
.socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-soft); transition: 0.3s; background: #fff; }
.socials a:hover { transform: translateY(-3px); border-color: var(--ink); }
.socials img, .socials svg { width: 24px; height: 24px; }
.night .socials a { border-color: var(--night-line); background: transparent; }
.night .socials a:hover { border-color: var(--night-text); }

/* ---------- Reservation ---------- */
.reserve-panel { max-width: 860px; margin: 0 auto; }
.prefill-note { font-family: var(--hand); font-size: 20px; color: var(--blue); margin-top: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; margin-top: 40px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); }
.form-field input, .form-field select, .timepick-btn {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 12px 0;
  font-family: var(--body); font-size: 17px; color: var(--ink); border-radius: 0; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus, .form-field select:focus, .timepick-btn.open { border-bottom-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.form-field input::placeholder { color: rgba(107,107,102,0.6); }
.field-note { font-family: var(--hand); font-size: 18px; color: var(--muted); }
.phone-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; }
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23111' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; cursor: pointer; }
.timepick { position: relative; }
.timepick-btn { display: flex; align-items: center; gap: 10px; text-align: left; cursor: pointer; color: var(--muted); }
.timepick-btn.chosen { color: var(--ink); }
.timepick-btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.timepick-btn .tp-caret { margin-left: auto; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: 0.3s; }
.timepick-btn.open .tp-caret { transform: rotate(225deg); }
.timepick-panel { position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--ink); padding: 10px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; max-height: 260px; overflow-y: auto; }
.timepick-slot { background: none; border: 1px solid var(--line-soft); padding: 10px 4px; font-family: var(--display); font-size: 17px; color: var(--ink); transition: 0.2s; }
.timepick-slot:hover { border-color: var(--ink); }
.timepick-slot.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.form-submit { margin-top: 40px; text-align: center; }
.wa-btn svg { width: 18px; height: 18px; }
.form-msg { text-align: center; margin-top: 18px; min-height: 24px; font-size: 15px; }
.form-msg.ok { color: var(--blue); }
.form-msg.err { color: #b3382a; }
.form-note { text-align: center; font-family: var(--hand); font-size: 20px; color: var(--muted); margin-top: 6px; }
.bookings-off #reserve, .bookings-off .book-link, .bookings-off .nav-cta { display: none !important; }

/* ---------- Footer ---------- */
footer { background: var(--night); color: var(--night-muted); padding: 80px 0 28px; border-top: 1px solid var(--night-line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--night-line); }
.footer-logo { height: 84px; width: auto; margin-bottom: 20px; }
.footer-grid p { max-width: 360px; font-size: 15px; }
.footer-grid h4 { font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--night-text); margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.footer-grid a:hover { color: var(--night-text); }
.footer-grid .socials { justify-content: flex-start; margin-top: 22px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 12.5px; letter-spacing: 0.04em; }
.footer-bottom a:hover { color: var(--night-text); }
.footer-hand { font-family: var(--hand); font-size: 20px; color: var(--night-text); }

/* ---------- Promo banner ---------- */
.promo-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 70; background: var(--blue); color: #fff; overflow: hidden; font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.promo-track { display: flex; width: max-content; animation: promo-slide linear infinite; }
.promo-banner-text { padding: 11px 36px; white-space: nowrap; }
.promo-banner-text::before { content: '\25CF'; font-size: 7px; vertical-align: 3px; margin-right: 36px; }
@keyframes promo-slide { to { transform: translateX(-50%); } }
body.has-promo .hero-content { padding-top: calc(150px + var(--promo-h, 0px)); }
body.has-promo .page-hero, body.has-promo .account-main, body.has-promo .legal-wrap { padding-top: calc(160px + var(--promo-h, 0px)); }

/* ---------- Reveal ---------- */
.reveal, .reveal-left { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left { transform: translateX(-26px); }
.reveal.visible, .reveal-left.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; } [data-delay="2"] { transition-delay: 0.24s; } [data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
  .draw [data-len] { stroke-dashoffset: 0 !important; animation: none !important; }
  .draw .fill { opacity: 1; transition: none; }
  .hero-scroll span:last-child { animation: none; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 95; background: var(--ink); color: var(--paper); padding: 14px 22px; font-size: 14px; opacity: 0; pointer-events: none; transition: 0.35s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Account, deals, legal pages ---------- */
.page-account { background: var(--paper); }
.page-boot { position: fixed; inset: 0; z-index: 100; background: var(--paper); display: grid; place-items: center; transition: opacity 0.25s; }
.page-boot.gone { opacity: 0; pointer-events: none; }
.boot-mark { position: relative; width: 96px; height: 96px; display: grid; place-items: center; }
.boot-mark img { height: 56px; width: auto; }
.boot-ring { position: absolute; inset: 0; border: 1px solid var(--line-soft); border-top-color: var(--blue); border-radius: 50%; animation: spin 1.1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.account-main { min-height: 100svh; padding: 150px 0 90px; }
.auth-wrap { display: grid; place-items: center; }
.auth-card { width: min(560px, 100%); background: #fff; border: 1px solid var(--line); padding: 48px 44px; text-align: center; }
.auth-logo { height: 64px; width: auto; margin: 0 auto 18px; }
.auth-card .section-title { font-size: clamp(34px, 5vw, 48px); margin: 0 0 8px; }
.auth-sub { color: var(--muted); margin-bottom: 30px; }
.auth-form { display: grid; gap: 18px; text-align: left; }
.auth-form label { font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); }
.auth-form input:not([type='checkbox']), .auth-form select { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 11px 0; font-family: var(--body); font-size: 16px; color: var(--ink); outline: none; border-radius: 0; }
.auth-form input:focus, .auth-form select:focus { border-bottom-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.auth-form label + input, .auth-form label + .pw-wrap, .auth-form label + select { margin-top: -8px; }
#signupForm { grid-template-columns: 1fr 1fr; }
#signupForm > div { display: grid; gap: 8px; }
#signupForm .full { grid-column: 1 / -1; }
.auth-form .btn { justify-content: center; width: 100%; margin-top: 8px; }
.auth-hint { font-size: 13px; color: var(--muted); }
.auth-msg { min-height: 22px; font-size: 14.5px; text-align: center; }
.auth-msg.err { color: #b3382a; }
.auth-msg.ok { color: var(--blue); }
.auth-switch { text-align: center; font-size: 14.5px; color: var(--muted); }
.auth-switch a { color: var(--blue); border-bottom: 1px solid currentColor; }
.stay-line { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.stay-row { display: flex; align-items: center; gap: 8px; font-size: 14px !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--muted) !important; }
.stay-row input { width: 16px; height: 16px; accent-color: var(--blue); }
.forgot-link { color: var(--blue); }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 40px !important; }
.pw-eye { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: 0; width: 32px; height: 32px; display: grid; place-items: center; color: var(--muted); }
.pw-eye svg { width: 20px; height: 20px; fill: currentColor; }
.pw-eye .eye-shut { display: none; }
.pw-eye.on .eye-open { display: none; }
.pw-eye.on .eye-shut { display: block; }
.gender-row { display: flex; gap: 8px; }
.gender-row button { flex: 1; background: none; border: 1px solid var(--line-soft); padding: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: 0.25s; }
.gender-row button.active { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.birthday-note { font-family: var(--hand); font-size: 19px; color: var(--muted); }
.pending-title { font-size: 30px; text-align: center; }
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 40px 0 56px; }
.member-card { background: #fff; border: 1px solid var(--line); padding: 32px; display: grid; gap: 12px; align-content: start; }
.member-card h3 { font-size: 26px; }
.member-card .btn { justify-self: start; }
.member-heading { font-size: 30px; margin-bottom: 20px; }
.res-list { display: grid; gap: 12px; }
.res-card { background: #fff; border: 1px solid var(--line-soft); padding: 18px 22px; display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center; }
.res-when b { display: block; font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--ink); }
.res-when span, .res-meta span { display: block; font-size: 13px; color: var(--muted); }
.res-meta b { color: var(--ink); font-weight: 700; }
.res-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; padding: 7px 12px; border: 1px solid var(--line-soft); }
.res-badge.confirmed { border-color: var(--blue); color: var(--blue); }
.res-badge.cancelled { color: #b3382a; border-color: #b3382a; }
.deals-main .section-head { margin-bottom: 40px; }
.deals-empty { text-align: center; padding: 60px 20px; border: 1px solid var(--line-soft); background: #fff; display: grid; gap: 26px; justify-items: center; }
.deal-group { margin-bottom: 56px; }
.deal-group h2 { font-size: 30px; margin-bottom: 20px; border-top: 1px solid var(--line); padding-top: 20px; }
.deal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.deal-card { position: relative; background: #fff; border: 1px solid var(--line); display: grid; }
.deal-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.deal-body { padding: 22px; display: grid; gap: 8px; }
.deal-body h3 { font-size: 22px; }
.deal-body p { font-size: 14px; color: var(--muted); }
.deal-prices { display: flex; gap: 14px; align-items: baseline; font-family: var(--display); }
.deal-prices s { color: var(--muted); }
.deal-prices b { color: var(--blue); font-size: 26px; font-weight: 700; }
.deal-badge { position: absolute; top: 14px; right: 14px; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; padding: 6px 10px; }
.del-card { text-align: left; }
.del-card .section-title, .del-card .auth-logo { text-align: center; }
.del-card .section-title { text-align: center; }
.del-block { border-top: 1px solid var(--line-soft); padding-top: 22px; margin-top: 22px; }
.del-block h2 { font-size: 22px; margin-bottom: 12px; }
.del-list { padding-left: 18px; display: grid; gap: 8px; font-size: 15px; color: var(--ink-2); }
.del-note { font-size: 15px; color: var(--muted); margin: 12px 0; }
.del-or { margin-top: 20px; }
.del-app { margin-top: 24px; font-family: var(--hand); font-size: 19px; }
.legal-wrap { padding: 160px 0 100px; }
.legal { max-width: 780px; }
.legal h2 { font-size: 22px; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--blue); }
.legal .updated { font-family: var(--hand); font-size: 20px; color: var(--muted); margin-bottom: 30px; }
.notfound { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 24px; }
.notfound img { height: 80px; width: auto; margin: 0 auto 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .vibe-grid { grid-template-columns: repeat(2, 1fr); }
  .vibe-card:nth-child(2n) { transform: none; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-face { display: none; }
}
@media (max-width: 900px) {
  section { padding: 90px 0; }
  .nav-links { position: fixed; inset: var(--nav-h) 0 0 0; background: var(--paper); color: var(--ink); flex-direction: column; gap: 0; margin: 0; padding: 20px 24px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: 0.3s; overflow-y: auto; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--line-soft); }
  .nav-links a { display: block; padding: 18px 0; font-size: 14px; }
  .nav-links a::after { display: none; }
  .nav-links .lang-switch { margin: 18px 0; }
  .mobile-only { display: block; }
  .nav-right { display: none; }
  .burger { display: block; }
  .hero-content { grid-template-columns: 1fr; padding: 130px 0 90px; }
  .hero-art { display: none; }
  .hero-side { display: none; }
  .about-grid, .bar-grid, .info-grid { grid-template-columns: 1fr; gap: 44px; }
  .menu-cols { grid-template-columns: 1fr; }
  .gal-wall { columns: 2; }
  .member-grid { grid-template-columns: 1fr; }
  .deal-cards { grid-template-columns: 1fr 1fr; }
  .bar-art { max-width: 260px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .form-grid { grid-template-columns: 1fr; }
  .phone-row { grid-template-columns: 110px 1fr; }
  .vibe-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gal-wall { columns: 2; column-gap: 12px; }
  .gal-wall .frame { margin-bottom: 12px; padding: 6px; }
  .auth-card { padding: 34px 22px; }
  #signupForm { grid-template-columns: 1fr; }
  .res-card { grid-template-columns: 1fr; gap: 10px; }
  .deal-cards { grid-template-columns: 1fr; }
  .menu-tabs { gap: 26px; }
  .menu-tabs button { font-size: 20px; }
  .timepick-panel { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: clamp(46px, 14vw, 80px); }
}
