/* ============================================================
   B13 BAR · Schlieren — "Place to be"
   Cinematic boutique-bar onepager
   Palette + type system + layout + animation
   ============================================================ */

/* Satoshi — geometric, slightly rounded, premium. Matches the 1-3-B mark. */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

:root {
  /* Brand palette */
  --charcoal: #0B0A0A;
  --warm-black: #15110F;
  --taupe: #927F7B;
  --soft-taupe: #B5A5A0;
  --ivory: #F5F1ED;
  --gold: #C89B5A;
  --amber: #F39A2E;
  --red: #C94E46;
  --green: #2F6B4D;

  /* Derived */
  --ink: #F5F1ED;
  --ink-dim: rgba(245, 241, 237, 0.62);
  --ink-faint: rgba(245, 241, 237, 0.34);
  --line: rgba(200, 155, 90, 0.22);
  --hairline: rgba(245, 241, 237, 0.12);

  --maxw: 1180px;
  --pagew: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--charcoal); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
.display {
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink-dim); line-height: 1.65; text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
section { position: relative; }
.section-pad { padding-block: clamp(5rem, 13vh, 9rem); }

/* ============================================================
   GRAIN + CURSOR GLOW (desktop only)
   ============================================================ */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 1; pointer-events: none;
  width: 540px; height: 540px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,155,90,0.10), rgba(200,155,90,0) 64%);
  opacity: 0; transition: opacity 0.5s ease;
  will-change: transform;
}
@media (hover: none) { #cursor-glow { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 1.5rem;
}
.nav.scrolled {
  background: rgba(11, 10, 10, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hairline);
  padding-block: 0.9rem;
}
.nav-inner { max-width: var(--pagew); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-dim); letter-spacing: 0.01em;
  position: relative; padding-block: 0.3rem; transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; border-radius: 100px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(200,155,90,0.5); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(11,10,10,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu .btn { transition-delay: 0.4s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 116%; object-fit: cover; object-position: center 40%; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 70% 18%, rgba(200,155,90,0.16), rgba(200,155,90,0) 50%),
    linear-gradient(to top, rgba(11,10,10,0.96) 0%, rgba(11,10,10,0.55) 36%, rgba(11,10,10,0.35) 62%, rgba(11,10,10,0.6) 100%);
}
/* giant B monogram mask behind hero text */
.hero-mono {
  position: absolute; z-index: 1; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(52vw, 640px); opacity: 0.06; pointer-events: none; filter: grayscale(1) brightness(2);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); padding-bottom: clamp(3.5rem, 9vh, 6rem); }
.hero h1 { margin: 1rem 0 0.4rem; }
.hero .subline { font-size: clamp(1.25rem, 2.6vw, 2rem); font-weight: 500; color: var(--soft-taupe); letter-spacing: -0.01em; }
.hero .lede { max-width: 36ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-micro { margin-top: 2.2rem; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

/* hero entrance reveal helpers (set base = visible, animate from hidden) */
.hero [data-hero] { opacity: 0; transform: translateY(26px); }
.hero.ready [data-hero] { opacity: 1; transform: none; transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.hero.ready [data-hero="1"] { transition-delay: 1.5s; }
.hero.ready [data-hero="2"] { transition-delay: 1.7s; }
.hero.ready [data-hero="3"] { transition-delay: 1.9s; }
.hero.ready [data-hero="4"] { transition-delay: 2.1s; }
.hero.ready [data-hero="5"] { transition-delay: 2.3s; }

/* scroll indicator: 1 / 3 morph cue */
.scroll-cue { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0; }
.hero.ready .scroll-cue { opacity: 1; transition: opacity 1s ease 2.6s; }
.scroll-cue .num { font-weight: 900; font-size: 1.1rem; color: var(--gold); letter-spacing: 0.1em; }
.scroll-track { width: 1px; height: 46px; background: var(--hairline); position: relative; overflow: hidden; }
.scroll-track::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrolldrop 2.2s var(--ease) infinite; }
@keyframes scrolldrop { 0% { top: -50%; } 60%, 100% { top: 100%; } }

/* Intro logo-line loader */
.loader { position: fixed; inset: 0; z-index: 9500; background: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease); }
.loader.done { opacity: 0; visibility: hidden; }
.loader-logo { position: relative; width: min(42vw, 220px); }
.loader-logo img { width: 100%; opacity: 0; transform: scale(0.98); transition: opacity 1.1s var(--ease) 0.55s, transform 1.4s var(--ease) 0.55s; }
.loader.lit .loader-logo img { opacity: 1; transform: none; }
/* the "fine line" the logo emerges from */
.loader-line { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transition: width 0.9s var(--ease); }
.loader.lit .loader-line { width: 100%; opacity: 0; transition: width 0.9s var(--ease), opacity 0.6s ease 0.7s; }

/* ============================================================
   INTRO — giant 13 parallax
   ============================================================ */
.intro { background: var(--warm-black); overflow: hidden; }
.intro-13 { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; user-select: none; }
.intro-13 span { font-weight: 900; font-size: clamp(20rem, 52vw, 56rem); line-height: 1; color: rgba(146,127,123,0.06); letter-spacing: -0.04em; will-change: transform; }
.intro-content { position: relative; z-index: 1; max-width: 56ch; }
.intro h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin: 1.2rem 0 1.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }
.chip { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; padding: 0.5rem 1rem; border: 1px solid var(--hairline); border-radius: 100px; color: var(--soft-taupe); transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease); }
.chip:hover { border-color: var(--line); color: var(--ink); background: rgba(200,155,90,0.06); }

/* ============================================================
   DRINKS
   ============================================================ */
.drinks { background: var(--charcoal); }
.drinks-head { max-width: 60ch; margin-bottom: 3.5rem; }
.drinks-head h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin: 1.2rem 0 1.4rem; }
.drinks-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1rem, 2.4vw, 2rem); align-items: stretch; }
.drinks-feature { position: relative; border-radius: 18px; overflow: hidden; min-height: 540px; }
.drinks-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.drinks-feature:hover img { transform: scale(1.05); }
.drinks-feature .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem; background: linear-gradient(to top, rgba(11,10,10,0.92), transparent); z-index: 1; }
.drinks-feature .cap h3 { font-size: 1.6rem; }
.drinks-feature .cap p { color: var(--ink-dim); margin-top: 0.4rem; max-width: 34ch; }
.drink-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.4vw, 2rem); }
.drink-card {
  position: relative; overflow: hidden; padding: 1.8rem; border-radius: 18px;
  border: 1px solid var(--hairline); background: linear-gradient(160deg, rgba(146,127,123,0.07), rgba(146,127,123,0.02));
  display: flex; flex-direction: column; gap: 0.7rem; min-height: 250px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  transform-style: preserve-3d;
}
.drink-card:hover { border-color: var(--line); transform: perspective(900px) rotateX(3deg) rotateY(-3deg) translateY(-4px); }
/* glass shimmer */
.drink-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(245,241,237,0.10) 48%, transparent 58%);
  background-size: 280% 100%; background-position: 130% 0; transition: background-position 0.9s var(--ease);
}
.drink-card:hover::before { background-position: -40% 0; }
.drink-card .idx { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); position: relative; z-index: 1; }
.drink-card h3 { font-size: 1.32rem; position: relative; z-index: 1; }
.drink-card p { color: var(--ink-dim); font-size: 0.98rem; position: relative; z-index: 1; }

/* ============================================================
   TERRACE
   ============================================================ */
.terrace { background: var(--warm-black); overflow: hidden; }
.terrace-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.terrace-media { position: relative; }
.terrace-main { border-radius: 18px; overflow: hidden; position: relative; }
.terrace-main img { width: 100%; height: clamp(420px, 60vh, 640px); object-fit: cover; will-change: transform; }
.terrace-main::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--line); border-radius: 18px; pointer-events: none; }
.terrace-detail { position: absolute; right: -7%; bottom: -10%; width: 46%; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -25px rgba(0,0,0,0.8); border: 4px solid var(--warm-black); will-change: transform; }
.terrace-detail img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.terrace-text h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin: 1.2rem 0 1.4rem; }
.terrace-text .lede { margin-bottom: 2rem; }
.terrace-addr { margin-top: 1.6rem; font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   BRAND MOMENT — 1 + 3 = B (ivory)
   ============================================================ */
.brand { background: var(--ivory); color: var(--charcoal); text-align: center; }
.brand .eyebrow { color: var(--taupe); }
.brand h2 { color: var(--charcoal); font-size: clamp(1.8rem, 4vw, 3rem); margin: 1.2rem auto 1rem; max-width: 22ch; }
.brand p { color: #5b504c; max-width: 52ch; margin: 0 auto 3.5rem; }
.morph { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem, 5vw, 4rem); flex-wrap: wrap; }
.morph-stage { position: relative; width: clamp(180px, 30vw, 260px); height: clamp(220px, 34vw, 320px); display: flex; align-items: center; justify-content: center; }
.morph-glyph { position: absolute; font-weight: 900; font-size: clamp(11rem, 22vw, 17rem); line-height: 1; color: var(--taupe); letter-spacing: -0.05em; transition: opacity 0.7s var(--ease), transform 0.9s var(--ease), filter 0.7s var(--ease); }
.morph-logo { position: absolute; width: 78%; opacity: 0; transform: scale(0.9); transition: opacity 0.9s var(--ease), transform 1.1s var(--ease); }
.brand.is-scroll-morph .morph-glyph,
.brand.is-scroll-morph .morph-logo,
.brand.is-scroll-morph .morph-plus,
.brand.is-scroll-morph .morph-eq { transition: none; will-change: opacity, transform, filter; }
/* states driven by .is-b on the section */
.brand.is-b .morph-glyph { opacity: 0; transform: translateX(0) scale(0.86); filter: blur(6px); }
.brand.is-b .morph-logo { opacity: 1; transform: none; }
.morph-plus { font-weight: 300; font-size: clamp(2.5rem, 6vw, 4rem); color: var(--soft-taupe); transition: opacity 0.6s var(--ease); }
.brand.is-b .morph-plus, .brand.is-b .morph-eq { opacity: 0; }
.morph-eq { font-weight: 300; font-size: clamp(2.5rem, 6vw, 4rem); color: var(--soft-taupe); }
.brand-foot { margin-top: 3.4rem; font-size: 0.86rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }

/* ============================================================
   GALLERY — bento
   ============================================================ */
.gallery { background: var(--charcoal); }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.gallery-head h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin-top: 1rem; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: clamp(0.7rem, 1.6vw, 1.1rem); grid-auto-flow: dense; }
/* hide the "Meta AI" watermark in the bottom-right of b13_1 by cropping into the frame */
.tile.crop-wm img { object-position: 50% 22%; transform: scale(1.12); }
.tile.crop-wm:hover img { transform: scale(1.18); }
.tile { position: relative; overflow: hidden; border-radius: 16px; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile:hover img { transform: scale(1.07); }
.tile .label { position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,10,10,0.7), transparent 55%); opacity: 0; transition: opacity 0.4s var(--ease); }
.tile:hover .label { opacity: 1; transform: none; }
.tile:hover::after { opacity: 1; }
.t-wide { grid-column: span 2; }
.t-tall { grid-row: span 2; }
.t-big { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   RESERVATION
   ============================================================ */
.reserve { position: relative; background: var(--warm-black); overflow: hidden; }
.reserve::before { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 120% at 80% 10%, rgba(200,155,90,0.12), transparent 55%); z-index: 0; }
.reserve-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.reserve-text h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 1.2rem 0 1.4rem; }
.reserve-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 2rem 0 1.2rem; }
.reserve-micro { color: var(--ink-faint); font-size: 0.92rem; }

.form-card { background: rgba(245,241,237,0.04); border: 1px solid var(--hairline); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.4rem); backdrop-filter: blur(8px); }
.form-card .tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); }
.field input, .field textarea {
  font-family: inherit; font-size: 0.98rem; color: var(--ink);
  background: rgba(11,10,10,0.4); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 0.8rem 0.9rem; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%; min-width: 0; max-width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(11,10,10,0.6); }
.field textarea { resize: vertical; min-height: 84px; }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field input[type="time"] { -webkit-appearance: none; appearance: none; min-width: 0; max-width: 100%; line-height: 1.4; }
.field input[type="time"]::-webkit-date-and-time-value { text-align: left; min-width: 0; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) brightness(2); opacity: 1; cursor: pointer; }
.field input[type="time"]::-webkit-calendar-picker-indicator { opacity: 0; cursor: pointer; }
.b13-date-picker, .b13-time-picker { position: relative; min-width: 0; }
.b13-time-picker { overflow: hidden; }
.b13-date-picker input[data-b13-date-display], .b13-time-picker input[type="time"] { width: 100%; padding-right: 2.9rem; cursor: pointer; }
.b13-picker-trigger, .b13-time-trigger {
  position: absolute; right: 0.72rem; top: 50%; transform: translateY(-50%);
  width: 1.45rem; height: 1.45rem; border: 0; padding: 0; margin: 0;
  cursor: pointer; background: transparent center / 1.15rem 1.15rem no-repeat;
  opacity: 0.95; z-index: 2;
}
.b13-picker-trigger {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16.5' rx='2.5'/%3E%3Cpath d='M8 3v4M16 3v4M3 9h18'/%3E%3C/svg%3E");
}
.b13-time-trigger {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Cpath d='M12 7.5v5l3.2 1.9'/%3E%3C/svg%3E");
}
.b13-picker-trigger:hover, .b13-time-trigger:hover { opacity: 1; }
.b13-date-panel {
  position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0; z-index: 40;
  padding: 0.9rem; border: 1px solid var(--hairline); border-radius: 14px;
  background: rgba(21,17,15,0.98); box-shadow: 0 26px 70px -35px rgba(0,0,0,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.b13-date-panel[hidden] { display: none; }
.b13-date-head { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.8rem; }
.b13-date-title { color: var(--ink); font-weight: 700; letter-spacing: 0.04em; }
.b13-date-nav { width: 2rem; height: 2rem; border-radius: 999px; border: 1px solid var(--hairline); background: rgba(255,255,255,0.04); color: var(--ink); cursor: pointer; }
.b13-date-nav:hover { border-color: var(--gold); color: var(--gold); }
.b13-date-nav:disabled { opacity: 0.28; cursor: not-allowed; color: var(--ink-faint); }
.b13-date-nav:disabled:hover { border-color: var(--hairline); color: var(--ink-faint); }
.b13-date-weekdays, .b13-date-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.28rem; }
.b13-date-weekdays { margin-bottom: 0.35rem; color: var(--ink-faint); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.b13-date-day {
  min-height: 2.2rem; border: 1px solid transparent; border-radius: 10px;
  background: rgba(255,255,255,0.04); color: var(--ink); cursor: pointer;
  font-family: inherit; font-size: 0.9rem;
}
.b13-date-day:hover { border-color: var(--gold); color: var(--gold); }
.b13-date-day.is-selected { background: var(--gold); color: var(--black); border-color: var(--gold); }
.b13-date-day.is-today:not(.is-selected) { border-color: var(--line); }
.b13-date-day.is-disabled { opacity: 0.26; color: var(--ink-faint); cursor: not-allowed; background: rgba(255,255,255,0.015); }
.b13-date-day.is-disabled:hover { border-color: transparent; color: var(--ink-faint); }
.b13-field-error { min-height: 1rem; margin: 0.1rem 0 0; color: var(--gold); font-size: 0.74rem; line-height: 1.35; }
.form-note { margin-top: 1rem; font-size: 0.78rem; color: var(--ink-faint); }
.form-card .btn { margin-top: 1.2rem; width: 100%; }

/* ============================================================
   CONTACT + MAP
   ============================================================ */
.contact { background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.info-card { background: rgba(245,241,237,0.03); border: 1px solid var(--hairline); border-radius: 20px; padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 1.8rem; }
.info-block h3 { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.info-block p { color: var(--ink-dim); line-height: 1.7; }
.info-block a { color: var(--ink); border-bottom: 1px solid var(--line); transition: color 0.3s var(--ease); }
.info-block a:hover { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px solid var(--hairline); color: var(--ink-dim); }
.hours-row:last-child { border-bottom: none; }
.hours-row .closed { color: var(--ink-faint); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.4rem; }
.map-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline); min-height: 420px; position: relative; }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.5) contrast(1.05) brightness(0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--warm-black); border-top: 1px solid var(--hairline); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2.5rem; flex-wrap: wrap; padding-block: clamp(3rem, 7vh, 5rem) 2.5rem; }
.footer-brand img { height: 54px; margin-bottom: 1rem; }
.footer-brand .tag { font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.footer-brand p { color: var(--ink-dim); margin-top: 1rem; line-height: 1.8; }
.footer-cols { display: flex; gap: clamp(2.5rem, 6vw, 5rem); flex-wrap: wrap; }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--ink-dim); padding: 0.3rem 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--hairline); padding-block: 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.04em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-gold { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .drinks-grid { grid-template-columns: 1fr; }
  .drinks-feature { min-height: 380px; }
  .terrace-grid { grid-template-columns: 1fr; gap: 4rem; }
  .terrace-detail { right: 4%; bottom: -8%; width: 40%; }
  .reserve-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .t-big { grid-column: span 2; grid-row: span 1; }
  .morph-stage { width: 44vw; height: 50vw; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .reserve-actions .btn { flex: 1 1 auto; }
  .bento { grid-template-columns: 1fr 1fr; }
  .drink-cards { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .hero [data-hero], .reveal { opacity: 1 !important; transform: none !important; }
  .hero-bg { inset: 0 !important; }
  .hero-bg img { height: 100% !important; }
  .scroll-track::after { display: none; }
  .loader { display: none; }
  .brand.is-b .morph-glyph { filter: none; }
  .intro-13 span { transform: none !important; }
}


/* WordPress integration helpers */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }
.reservation-status { margin: 0 0 1rem; padding: 0.85rem 1rem; border: 1px solid var(--hairline); border-radius: 14px; color: var(--ink); background: rgba(255,255,255,0.04); }
.reservation-status.is-success { border-color: rgba(88, 154, 104, 0.5); }
.reservation-status.is-error { border-color: rgba(180, 82, 69, 0.55); }
.b13-honeypot, .b13-spam-guard { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
