/* ============================================================
   TEVZEBI — Fish Pub by Studio 995
   Palette & type pulled from the restaurant's own photography:
   warm near-black, bone linen, brass/amber, a drop of oar-red.
   ============================================================ */

:root {
  --ink: #131010;          /* warm near-black (dining room shadows) */
  --ink-soft: #1d1917;
  --bone: #e9e1d3;         /* linen sails / plates */
  --bone-dim: #a89e8c;
  --brass: #c08a3e;        /* pendant lamps / whisky */
  --red: #a33325;          /* oars / surfboard */
  --line: rgba(233, 225, 211, 0.14);

  --font-display: "Fraunces", serif;
  --font-ui: "Space Grotesk", sans-serif;

  --gutter: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
figure { margin: 0; }

::selection { background: var(--brass); color: var(--ink); }

/* ------------------------------------------------------------
   PRELOADER
------------------------------------------------------------ */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.preloader__logo {
  width: clamp(110px, 16vw, 200px);
  height: auto;
  object-fit: contain;
  opacity: 0;
}
html.no-anim .preloader__logo { opacity: 1; }
.preloader__word {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--bone);
  display: flex;
}
.preloader__word span { opacity: 0; transform: translateY(0.4em); display: inline-block; }
.preloader__count {
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--brass);
}
.preloader__count::after { content: " %"; }

/* ------------------------------------------------------------
   NAV
------------------------------------------------------------ */
.nav {
  /* Above the mobile nav panel (80) so the burger can close it,
     below the gallery / menu overlays (90). */
  position: fixed; top: 0; left: 0; right: 0; z-index: 85;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: normal;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), background 0.4s;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-solid { background: linear-gradient(rgba(19,16,16,0.92), rgba(19,16,16,0)); }

.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 40px; width: auto; object-fit: contain;
  transition: opacity 0.3s;
}
.nav__logo:hover .nav__logo-img { opacity: 0.75; }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 12px 28px; border-radius: 40px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.nav__cta:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Right cluster: language switcher + CTA + burger */
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__lang {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.nav__lang a { color: var(--bone-dim); transition: color 0.3s; padding-bottom: 2px; }
.nav__lang a:hover { color: var(--bone); }
.nav__lang a.is-active { color: var(--bone); border-bottom: 1px solid var(--brass); }
.nav__lang i { font-style: normal; color: var(--bone-dim); opacity: 0.5; }

/* WordPress admin bar offset (logged-in views) */
body.admin-bar .nav { top: 32px; }

/* Burger (mobile only) */
.nav__burger {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  background: rgba(19, 16, 16, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(233, 225, 211, 0.28); border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.nav__burger span {
  position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--bone);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s;
}
.nav__burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.nav__burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 4px)); }
.nav__burger:hover { border-color: var(--brass); }
.nav__burger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ------------------------------------------------------------
   MOBILE NAV OVERLAY
------------------------------------------------------------ */
.mnav {
  position: fixed; inset: 0; z-index: 80;
}
.mnav[hidden] { display: none; }
/* Two stacked layers slide down in sequence (transform-only,
   GPU-composited — clip-path repainted the whole panel and janked). */
.mnav__accent {
  position: absolute; inset: 0;
  background: #1d1611;
  transform: translateY(-101%);
  will-change: transform;
}
.mnav__panel {
  position: absolute; inset: 0;
  background: #0c0a09;
  display: flex; flex-direction: column;
  padding: 90px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-101%);
  will-change: transform;
}
html.no-anim .mnav__accent, html.no-anim .mnav__panel { transform: none; }
.mnav__links {
  display: flex; flex-direction: column;
  margin-top: auto;
  margin-bottom: 6vh;
  position: relative; z-index: 2;
}
.mnav__link {
  display: flex; align-items: baseline; gap: 18px;
  padding: 3.2vh 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.mnav__link i, .mnav__link span { will-change: transform; }
.mnav__link i {
  font-style: normal;
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--brass);
}
.mnav__link span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1;
  color: var(--bone);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}
.mnav__link:active span, .mnav__link:hover span { transform: translateX(12px); color: var(--brass); }
.mnav__link--accent span { font-style: italic; }
.mnav__foot {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; letter-spacing: 0.08em;
  color: var(--bone-dim);
}
.mnav__foot a { color: var(--bone); }
.mnav__lang {
  display: flex; gap: 18px;
  margin-bottom: 14px;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
}
.mnav__lang a { color: var(--bone-dim); padding-bottom: 4px; transition: color 0.3s; }
.mnav__lang a.is-active { color: var(--bone); border-bottom: 1px solid var(--brass); }
.mnav__logo {
  position: absolute; right: -12%; top: 6%;
  width: 70%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}

/* Floating CTA dock: WhatsApp + reserve pill — always on screen,
   just eases in once after the preloader lifts. */
.cta-dock {
  position: fixed; right: var(--gutter); bottom: 28px; z-index: 49;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.cta-dock.is-ready { opacity: 1; transform: none; }
html.no-anim .cta-dock { opacity: 1; transform: none; transition: none; }
.wa-cta {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--bone); color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: background 0.35s, color 0.35s, transform 0.25s;
}
.wa-cta:hover { background: #25d366; color: #fff; transform: scale(1.06); }
.pill-cta {
  display: flex; align-items: center; gap: 10px;
  background: var(--bone); color: var(--ink);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: background 0.35s;
}
.pill-cta:hover { background: var(--brass); }
.pill-cta__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero { position: relative; height: 100svh; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video { transform: scale(1.15); transform-origin: center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,16,16,0.55) 0%, rgba(19,16,16,0.15) 40%, rgba(19,16,16,0.75) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 0 var(--gutter) 15vh;
}
.hero__eyebrow {
  display: flex; gap: 14px;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 3vh;
  opacity: 0;
}
.hero__eyebrow-sep { color: var(--brass); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 17vw, 260px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}
.hero__line { display: block; overflow: hidden; }
.hero__line span { display: block; transform: translateY(110%); }
.hero__sub {
  margin-top: 4vh;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--bone-dim);
  max-width: 420px;
  opacity: 0;
}
.hero__footer {
  position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: 28px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0;
}
.hero__scroll-hint { display: flex; align-items: center; gap: 14px; }
.hero__scroll-line { width: 56px; height: 1px; background: var(--bone-dim); display: inline-block; position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--brass);
  animation: scrollLine 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 55% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ------------------------------------------------------------
   MANIFESTO
------------------------------------------------------------ */
.manifesto {
  padding: 24vh var(--gutter);
  max-width: 1200px;
}
.manifesto__label, .room__label, .bar__label, .menu__label {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 40px;
}
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.18;
  color: var(--bone);
}
.manifesto__text .w { opacity: 0.12; transition: none; }
.manifesto__sig {
  margin-top: 48px;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim);
}

/* ------------------------------------------------------------
   THE CATCH
------------------------------------------------------------ */
.catch { position: relative; padding: 8vh 0 16vh; }
.catch__sticky {
  position: sticky; top: 0; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; pointer-events: none;
}
.catch__word {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(34px, 6vw, 88px);
  text-align: center;
  max-width: 12ch; line-height: 1.1;
  color: var(--bone);
  mix-blend-mode: difference;
}
.catch__images { position: relative; z-index: 2; margin-top: -70svh; }
.catch__fig { position: relative; margin-bottom: 18vh; }
.catch__fig .parallax { overflow: hidden; }
.catch__fig img { aspect-ratio: 3 / 4; }
.catch__fig--a { width: min(44vw, 560px); margin-left: var(--gutter); }
.catch__fig--b { width: min(34vw, 420px); margin-left: auto; margin-right: calc(var(--gutter) * 1.5); }
.catch__fig--b img { aspect-ratio: 3 / 4; }
.catch__fig--c { width: min(52vw, 680px); margin-left: 18vw; }
.catch__fig--c img { aspect-ratio: 4 / 3; }
.catch__fig figcaption {
  margin-top: 16px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone-dim);
  max-width: 340px;
}

/* Image reveal (clip) */
[data-reveal] .parallax { clip-path: inset(12% 6% 12% 6%); }
[data-reveal] img { transform: scale(1.18); }

/* ------------------------------------------------------------
   MARQUEE
------------------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ------------------------------------------------------------
   WHAT'S ON — happening carousel (cards open galleries)
------------------------------------------------------------ */
.menu__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
}
.happen { position: relative; padding: 16vh 0 10vh; }
.happen__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  padding: 0 var(--gutter);
  margin-bottom: 6vh;
}
.happen__label {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.happen__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
}
.happen__nav { display: flex; gap: 10px; }
.happen__arrow {
  width: 52px; height: 52px;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  color: var(--bone);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s, opacity 0.3s;
}
.happen__arrow:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.happen__arrow:disabled { opacity: 0.25; pointer-events: none; }

.happen__track {
  display: flex; gap: clamp(16px, 2vw, 32px);
  /* Generous editorial indent; scroll-padding keeps snap points
     aligned to it (snap ignores plain padding otherwise, which
     glued the first card to the viewport edge). */
  padding-inline: clamp(24px, 7vw, 110px);
  scroll-padding-inline: clamp(24px, 7vw, 110px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.happen__track::-webkit-scrollbar { display: none; }
.happen__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.happen__track.is-drag .happen__card { pointer-events: none; }

.happen__card {
  flex: 0 0 auto;
  width: clamp(280px, 34vw, 520px);
  scroll-snap-align: start;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.happen__media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
}
.happen__media img, .happen__media video {
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-user-drag: none;
}
.happen__card:hover .happen__media img,
.happen__card:hover .happen__media video { transform: scale(1.08); }
.happen__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 10, 9, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}
.happen__card:hover .happen__media::after { opacity: 1; }

.happen__meta {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 2px 0;
}
.happen__meta i {
  font-style: normal;
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--brass);
}
.happen__meta h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--bone);
}
.happen__hint {
  margin-left: auto;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.happen__hint em { font-style: normal; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.happen__card:hover .happen__hint { opacity: 1; transform: none; }
.happen__card:hover .happen__hint em { transform: translateX(5px); }
.happen__card:focus-visible { outline: 1px solid var(--brass); outline-offset: 6px; }

.happen__progress {
  height: 1px;
  background: var(--line);
  margin: 6vh var(--gutter) 0;
  position: relative;
}
.happen__progress span {
  position: absolute; left: 0; top: -1px;
  height: 3px; width: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ------------------------------------------------------------
   GALLERY OVERLAY
------------------------------------------------------------ */
.gallery {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column;
}
.gallery[hidden] { display: none; }
.gallery__bg { position: absolute; inset: 0; background: #0c0a09; }

.gallery__head {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--gutter);
}
.gallery__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--bone);
}
.gallery__counter {
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--bone-dim);
  display: flex; gap: 8px; align-items: baseline;
}
.gallery__counter i { font-style: normal; color: var(--brass); }
.gallery__counter #galCurrent { color: var(--bone); }
.gallery__close {
  background: none; border: 1px solid var(--line); border-radius: 40px;
  color: var(--bone);
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.gallery__close:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.gallery__stage { position: relative; z-index: 2; flex: 1; min-height: 0; }
.gallery__frame {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.gallery__slide {
  position: absolute;
  width: min(62vw, calc(83.7vh)); height: 72vh;
  max-width: calc(100vw - 2 * var(--gutter));
  overflow: hidden;
  will-change: clip-path, transform;
}
.gallery__slide img { transform: scale(1.06); }

.gallery__zone {
  position: absolute; top: 0; bottom: 0; width: 25%;
  background: none; border: none; cursor: pointer; z-index: 4;
}
.gallery__zone--prev { left: 0; cursor: w-resize; }
.gallery__zone--next { right: 0; cursor: e-resize; }

.gallery__foot {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px;
  padding: 20px var(--gutter) 28px;
}
.gallery__caption { max-width: 420px; overflow: hidden; }
.gallery__caption-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
  color: var(--bone);
  margin-bottom: 4px;
}
.gallery__caption-text { font-size: 12.5px; color: var(--bone-dim); letter-spacing: 0.04em; }

.gallery__thumbs { display: flex; gap: 10px; }
.gallery__thumb {
  width: 52px; height: 66px;
  padding: 0; border: none; background: none; cursor: pointer;
  overflow: hidden; position: relative;
  opacity: 0.35;
  transition: opacity 0.35s;
}
.gallery__thumb::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.gallery__thumb.is-active { opacity: 1; }
.gallery__thumb.is-active::after { transform: scaleX(1); }
.gallery__thumb:hover { opacity: 0.8; }

/* ------------------------------------------------------------
   THE BAR
------------------------------------------------------------ */
.bar { padding: 22vh var(--gutter); }
.bar__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
  max-width: 1500px; margin: 0 auto;
}
.bar__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.08;
  margin-bottom: 40px;
}
.bar__title .w { opacity: 0.12; }
.bar__body { color: var(--bone-dim); font-size: 15px; line-height: 1.8; max-width: 400px; }
.bar__media { position: relative; }
.bar__fig--main { width: 78%; }
.bar__fig--main .parallax { overflow: hidden; }
.bar__fig--main img { aspect-ratio: 4 / 5; }
.bar__fig--small {
  position: absolute; right: 0; bottom: -12%;
  width: 42%;
  border: 10px solid var(--ink);
}
.bar__fig--small .parallax { overflow: hidden; }
.bar__fig--small img { aspect-ratio: 3 / 4; }

/* ------------------------------------------------------------
   TABLE SCENE (video)
------------------------------------------------------------ */
.table-scene { padding: 10vh 0 0; }
.table-scene__media {
  position: relative; height: 100svh; overflow: hidden;
  width: 72%; margin: 0 auto;
}
.table-scene__media video { position: absolute; inset: 0; }
.table-scene__scrim { position: absolute; inset: 0; background: rgba(19,16,16,0.45); }
.table-scene__quote {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}
.table-scene__quote p {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(30px, 4.5vw, 64px);
  line-height: 1.2;
}
.table-scene__quote .w { opacity: 0.15; }

/* ------------------------------------------------------------
   MENU
------------------------------------------------------------ */
.menu { position: relative; padding: 24vh var(--gutter) 18vh; }
.menu__head { max-width: 800px; margin-bottom: 10vh; }
.menu__note { color: var(--bone-dim); margin-top: 18px; font-size: 14px; }
.menu__list { border-top: 1px solid var(--line); }
.menu__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline; gap: 24px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}
.menu__item:hover { padding-left: 28px; }
.menu__item::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: rgba(233, 225, 211, 0.035);
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.menu__item:hover::before { width: 100%; }
.menu__idx { font-size: 11px; letter-spacing: 0.2em; color: var(--brass); }
.menu__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 34px);
}
.menu__name em {
  font-family: var(--font-ui); font-style: normal;
  font-size: 13px; color: var(--bone-dim); letter-spacing: 0.06em;
  margin-left: 10px;
}
.menu__price { font-size: 14px; letter-spacing: 0.1em; color: var(--bone-dim); }

.menu__cta-row {
  display: flex; align-items: center; gap: 28px;
  margin-top: 8vh;
}
.menu__open {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--bone); color: var(--ink);
  border: none; border-radius: 60px;
  padding: 22px 44px;
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s, transform 0.25s;
}
.menu__open:hover { background: var(--brass); transform: scale(1.03); }
.menu__open:active { transform: scale(0.99); }
.menu__open i {
  font-style: normal;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.menu__open:hover i { transform: translateX(6px); }
.menu__cta-note { font-size: 12px; letter-spacing: 0.12em; color: var(--bone-dim); }

/* ------------------------------------------------------------
   FULL MENU OVERLAY
------------------------------------------------------------ */
.fmenu {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column;
}
.fmenu[hidden] { display: none; }
.fmenu__bg { position: absolute; inset: 0; background: #0c0a09; }

.fmenu__head {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.fmenu__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--bone);
}
.fmenu__tabs {
  display: flex; gap: 6px;
  border: 1px solid var(--line); border-radius: 50px;
  padding: 5px;
}
.fmenu__tab {
  background: none; border: none; border-radius: 40px;
  color: var(--bone-dim);
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.35s, color 0.35s;
}
.fmenu__tab:hover { color: var(--bone); }
.fmenu__tab.is-active { background: var(--bone); color: var(--ink); }
.fmenu__close {
  background: none; border: 1px solid var(--line); border-radius: 40px;
  color: var(--bone);
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.fmenu__close:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.fmenu__body {
  position: relative; z-index: 2;
  flex: 1; min-height: 0;
  display: flex;
}
.fmenu__rail {
  width: 250px; flex-shrink: 0;
  padding: 40px 0 40px var(--gutter);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.fmenu__rail-link {
  background: none; border: none;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim);
  padding: 9px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, padding-left 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.fmenu__rail-link::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.fmenu__rail-link:hover { color: var(--bone); }
.fmenu__rail-link.is-active { color: var(--bone); padding-left: 26px; }
.fmenu__rail-link.is-active::before { width: 18px; }

.fmenu__scroll {
  flex: 1; min-width: 0;
  overflow-y: auto;
  padding: 40px var(--gutter) 60px clamp(24px, 4vw, 72px);
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.fmenu__section { margin-bottom: 64px; }
.fmenu__section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--bone);
  margin-bottom: 6px;
}
.fmenu__section-sub {
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--bone-dim);
  margin-bottom: 26px;
}
.fmenu__items {
  columns: 1;
  max-width: 820px;
}
.fmenu__section--compact .fmenu__items { columns: 2; column-gap: clamp(32px, 4vw, 72px); }
.fmenu__row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 0;
  break-inside: avoid;
}
.fmenu__row-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  color: var(--bone);
}
.fmenu__row-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(233, 225, 211, 0.22);
  transform: translateY(-4px);
  min-width: 24px;
}
.fmenu__row-price {
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.08em;
  color: var(--bone-dim);
  white-space: nowrap;
}
.fmenu__note {
  max-width: 820px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.1em; line-height: 1.9;
  color: var(--bone-dim);
}

.menu__hover-img {
  position: fixed; z-index: 40;
  width: 300px; height: 380px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.35s, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.menu__hover-img.is-active { opacity: 1; transform: scale(1); }
.menu__hover-img img { transition: transform 0.6s; }

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.faq { padding: 14vh var(--gutter) 16vh; max-width: 980px; margin: 0 auto; }
.faq__label {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 7vh;
}
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: none;
  padding: 26px 4px;
  text-align: left;
  cursor: pointer;
  color: var(--bone);
  transition: padding-left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq__q span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(19px, 2.2vw, 27px);
}
.faq__q i {
  position: relative; flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 1.5px;
  background: var(--brass);
  transform: translate(-50%, -50%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq__q i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__q i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__q:hover { padding-left: 16px; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 4px 28px;
  max-width: 640px;
  font-size: 14.5px; line-height: 1.8;
  color: var(--bone-dim);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
html.no-anim .faq__a { grid-template-rows: 1fr; }

/* ------------------------------------------------------------
   RESERVE
------------------------------------------------------------ */
.reserve {
  padding: 22vh var(--gutter) 16vh;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}
.reserve__head { text-align: center; margin-bottom: 10vh; }
.reserve__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 6.5vw, 96px);
  line-height: 1.05;
  max-width: 16ch; margin: 0 auto;
}
.reserve__title .w { opacity: 0.12; }
.reserve__sub { margin-top: 24px; color: var(--bone-dim); font-size: 15px; }

.reserve__form { max-width: 760px; margin: 0 auto; }
.reserve__row { display: flex; gap: 28px; margin-bottom: 36px; }
.reserve__field { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.reserve__field label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone-dim);
}
.reserve__field input, .reserve__field select {
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 12px 2px;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300;
  border-radius: 0;
  transition: border-color 0.3s;
  color-scheme: dark;
}
.reserve__field input:focus, .reserve__field select:focus {
  outline: none; border-color: var(--brass);
}
.reserve__field input::placeholder { color: rgba(233,225,211,0.25); }
.reserve__field select option { background: var(--ink); }

.reserve__submit {
  position: relative;
  width: 100%; margin-top: 24px;
  background: var(--bone); color: var(--ink);
  border: none; border-radius: 60px;
  padding: 26px;
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  cursor: pointer; overflow: hidden;
  transition: background 0.35s, transform 0.2s;
}
.reserve__submit:hover { background: var(--brass); transform: scale(1.01); }
.reserve__submit:active { transform: scale(0.99); }
.reserve__submit-done { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transform: translateY(100%); transition: transform 0.45s cubic-bezier(0.65,0,0.35,1); background: var(--brass); }
.reserve__submit-label { display: inline-block; transition: transform 0.45s cubic-bezier(0.65,0,0.35,1), opacity 0.3s; }
.reserve__submit.is-done .reserve__submit-done { transform: translateY(0); }
.reserve__submit.is-done .reserve__submit-label { transform: translateY(-100%); opacity: 0; }

.reserve__alt { text-align: center; margin-top: 28px; font-size: 13px; color: var(--bone-dim); }
.reserve__alt a { color: var(--bone); border-bottom: 1px solid var(--brass); padding-bottom: 2px; }

.reserve__info {
  display: flex; justify-content: center; gap: clamp(48px, 9vw, 140px);
  margin-top: 14vh;
  text-align: center;
}
.reserve__info h3 {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); font-weight: 400;
  margin-bottom: 14px;
}
.reserve__info p { font-size: 14px; color: var(--bone-dim); line-height: 1.8; }
.reserve__info a { color: var(--bone); }
.reserve__info a:hover { color: var(--brass); }

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.footer { overflow: hidden; border-top: 1px solid var(--line); }
.footer__word { display: flex; justify-content: center; padding: 10vh 0 4vh; }
.footer__word img {
  width: min(72vw, 860px); height: auto;
  object-fit: contain;
  opacity: 0.1;
}
.footer__about {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter) 6vh;
  text-align: center;
  font-size: 13px; line-height: 1.9; letter-spacing: 0.04em;
  color: var(--bone-dim);
}
.footer__bottom {
  display: flex; justify-content: space-between;
  padding: 32px var(--gutter);
  border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .catch__fig--a, .catch__fig--b, .catch__fig--c {
    width: calc(100% - var(--gutter) * 2);
    margin-left: var(--gutter); margin-right: var(--gutter);
  }

  .happen__card { width: min(76vw, 380px); }
  .happen__nav { display: none; }
  .happen__hint { opacity: 1; transform: none; }

  .fmenu__head { flex-wrap: wrap; }
  .fmenu__title { display: none; }
  .fmenu__body { flex-direction: column; }
  .fmenu__rail {
    width: 100%; flex-direction: row; gap: 20px;
    overflow-x: auto; overflow-y: hidden;
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--line);
  }
  .fmenu__rail-link { white-space: nowrap; padding: 6px 0; }
  .fmenu__rail-link.is-active { padding-left: 0; }
  .fmenu__rail-link.is-active::before { width: 100%; top: auto; bottom: 0; }
  .fmenu__section--compact .fmenu__items { columns: 1; }
  .menu__cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  .gallery__slide { width: calc(100vw - 2 * var(--gutter)); height: 58vh; }
  .gallery__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery__thumbs { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .gallery__thumb { flex-shrink: 0; }

  .bar__grid { grid-template-columns: 1fr; }
  .bar__fig--main { width: 92%; }

  .table-scene__media { width: 100%; height: 70svh; }

  .menu__item { grid-template-columns: 40px 1fr; }
  .menu__price { grid-column: 2; }
  .menu__hover-img { display: none; }

  .reserve__row { flex-direction: column; gap: 28px; }
  .reserve__info { flex-direction: column; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Static mode: html.no-anim is set by JS for ?noanim and
   prefers-reduced-motion — every animated element in final state. */
html.no-anim .hero__line span { transform: none; }
html.no-anim .hero__eyebrow,
html.no-anim .hero__sub,
html.no-anim .hero__footer { opacity: 1; }
html.no-anim [data-reveal] .parallax { clip-path: none; }
html.no-anim [data-reveal] img { transform: none; }
html.no-anim .manifesto__text,
html.no-anim .bar__title,
html.no-anim .table-scene__quote p,
html.no-anim .catch__word,
html.no-anim .reserve__title span { opacity: 1; }
html.no-anim .manifesto__text .w,
html.no-anim .bar__title .w,
html.no-anim .table-scene__quote .w,
html.no-anim .reserve__title .w { opacity: 1; }
html.no-anim .hero__scroll-line::after { animation: none; }
html.no-anim .pill-cta__dot { animation: none; }

/* ============================================================
   PHONE OVERRIDES (≤ 600px) — cuts oversized vh vertical rhythm
   to ~45-55% of desktop, fixes the dock/footer collision, and
   keeps the reserve pill from overflowing. Cascades after the
   900px block; only re-declares where a smaller value is needed.
   ============================================================ */
@media (max-width: 600px) {

  /* Preloader: edge safety + tighter tracking */
  .preloader { padding: 0 20px; }
  .preloader__word { font-size: clamp(34px, 9vw, 96px); letter-spacing: 0.1em; }

  /* Hero: shrink the huge bottom gap, keep copy clear of the dock */
  .hero__content { padding: 0 var(--gutter) 9vh; }
  .hero__eyebrow { margin-bottom: 12px; }
  .hero__sub { margin-top: 16px; }
  /* Scroll hint + copy both bottom-anchor on a phone and collide;
     the scroll affordance is obvious on touch, so drop it. */
  .hero__footer { display: none; }

  /* Floating CTA dock + pill: compact, clear of the footer */
  .cta-dock { bottom: 16px; gap: 10px; }
  .pill-cta { padding: 13px 20px; letter-spacing: 0.12em; white-space: nowrap; }

  /* Mobile nav overlay */
  .mnav__panel { padding: 76px var(--gutter) 40px; }
  .mnav__link { padding: 20px 0; }
  .mnav__link span { font-size: clamp(28px, 8vw, 56px); }
  .mnav__links { margin-bottom: 24px; }
  .mnav__logo { width: 62%; right: -8%; }

  /* Manifesto / Happen carousel / Catch */
  .manifesto { padding: 11vh var(--gutter); }
  .happen { padding: 8vh 0 6vh; }
  .happen__head { margin-bottom: 3.5vh; }
  .happen__progress { margin-top: 3vh; }
  .catch { padding: 5vh 0 8vh; }
  .catch__fig { margin-bottom: 8vh; }
  .catch__sticky { height: 60svh; }
  .catch__images { margin-top: -42svh; }

  /* Bar */
  .bar { padding: 10vh var(--gutter); }
  .bar__fig--small { width: 48%; bottom: -8%; right: 0; border-width: 6px; }

  /* Table scene (video) */
  .table-scene { padding: 5vh 0 0; }
  .table-scene__quote p { font-size: clamp(22px, 6vw, 40px); }

  /* Menu shortlist */
  .menu { padding: 11vh var(--gutter) 9vh; }
  .menu__head { margin-bottom: 5vh; }
  .menu__cta-row { margin-top: 4vh; }

  /* Full-menu overlay */
  .fmenu__scroll { padding: 24px var(--gutter) 40px; }
  .fmenu__section { margin-bottom: 40px; }
  .fmenu__rail-link { flex-shrink: 0; }

  /* FAQ */
  .faq { padding: 8vh var(--gutter) 8vh; }
  .faq__title { margin-bottom: 4vh; }

  /* Reserve */
  .reserve { padding: 9vh var(--gutter) 8vh; }
  .reserve__head { margin-bottom: 5vh; }
  .reserve__info { margin-top: 7vh; }
  .reserve__row { gap: 20px; margin-bottom: 20px; }
  .reserve__field input, .reserve__field select { font-size: 17px; }

  /* Footer */
  .footer__word { padding: 5vh 0 2vh; }
  .footer__about { padding-bottom: 4vh; }

  /* Gallery overlay */
  .gallery__slide { height: 52vh; }
  .gallery__thumb { width: 44px; height: 56px; }
}

/* Narrowest phones: extra pill shrink so the WhatsApp circle +
   pill can never crowd the corner. */
@media (max-width: 380px) {
  .cta-dock { gap: 8px; }
  .pill-cta { padding: 12px 16px; font-size: 11px; letter-spacing: 0.08em; }
}
