/* ============================================================
   Saint Sky Bar — Sky Bar Santorini
   Editorial-luxury Cycladic aesthetic
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* EB Garamond only supplies the Greek glyphs Cormorant Garamond lacks — Latin is unaffected */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  /* light theme (Cycladic whitewash) */
  --bg: #eef4f8;
  --bg-2: #f7fbfd;
  --surface: #ffffff;
  --ink: #122a38;
  --ink-soft: #4c6576;
  --ink-faint: #8aa1af;
  --line: rgba(18, 42, 56, 0.12);
  --line-soft: rgba(18, 42, 56, 0.07);
  --sky: #8ec6e6;      /* light Aegean */
  --sea: #2f80ab;      /* deeper sea */
  --sea-deep: #164a68;
  --sand: #111111;     /* mono accent (was sunset gold) — near-black in the light theme */
  --on-accent: #ffffff; /* text/icons sitting on a filled --sand surface */
  --scrim: linear-gradient(180deg, rgba(8,26,38,.28) 0%, rgba(8,26,38,.05) 30%, rgba(8,26,38,.12) 60%, rgba(8,26,38,.55) 100%);
  --shadow-soft: 0 18px 50px -22px rgba(18, 42, 56, 0.35);
  --shadow-card: 0 30px 70px -30px rgba(18, 42, 56, 0.45);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="dark"] {
  --bg: #0a0e11;
  --bg-2: #0d1216;
  --surface: #12181d;
  --ink: #e9f3f8;
  --ink-soft: #a6c0cf;
  --ink-faint: #6d8b9c;
  --line: rgba(233, 243, 248, 0.14);
  --line-soft: rgba(233, 243, 248, 0.08);
  --sky: #93c9ea;
  --sea: #5aa9d0;
  --sea-deep: #bfe0f1;
  --sand: #f4f8fb;     /* mono accent (was sunset gold) — near-white in the dark theme */
  --on-accent: #0a0e11; /* text/icons sitting on a filled --sand surface */
  --scrim: linear-gradient(180deg, rgba(4,14,21,.45) 0%, rgba(4,14,21,.12) 35%, rgba(4,14,21,.25) 60%, rgba(4,14,21,.75) 100%);
  --shadow-soft: 0 18px 50px -22px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 34px 80px -30px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color .6s var(--ease), color .6s var(--ease);
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; 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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared type ---------- */
.kicker {
  font-size: .72rem; font-weight: 500; letter-spacing: .34em;
  text-transform: uppercase; color: var(--sea);
}
.kicker.light { color: rgba(255,255,255,.85); }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.06;
  letter-spacing: .005em; color: var(--ink);
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; }
.section-head .kicker { margin-bottom: 1.1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
/* header brand lockup: SKY wordmark on the left, SAINT wordmark on its right (each theme-swapped) */
.site-header .brand-sky { height: 46px; }
.site-header .brand-saint { height: 42px; }
/* default (over hero): show white logo */
.brand-logo--dark { display: none; }
/* light theme, scrolled header → switch to dark logo */
.site-header.scrolled .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark { display: block; }
/* dark theme keeps the white logo even when scrolled */
:root[data-theme="dark"] .site-header.scrolled .brand-logo--light { display: block; }
:root[data-theme="dark"] .site-header.scrolled .brand-logo--dark { display: none; }
.site-header:not(.scrolled) .main-nav a,
.site-header:not(.scrolled) .header-controls { color: #fff; }
/* desktop hero is a light image (not a dark video), so the header stays theme-aware at the top too */
@media (min-width: 768px) {
  .site-header:not(.scrolled) .main-nav a,
  .site-header:not(.scrolled) .header-controls { color: var(--ink); }
  .site-header:not(.scrolled) .brand-logo--light { display: none; }
  .site-header:not(.scrolled) .brand-logo--dark { display: block; }
  :root[data-theme="dark"] .site-header:not(.scrolled) .brand-logo--light { display: block; }
  :root[data-theme="dark"] .site-header:not(.scrolled) .brand-logo--dark { display: none; }
}
/* solid header for standalone pages (no hero behind) — always readable, regardless of scroll */
.site-header.is-solid {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.site-header.is-solid .brand-logo--light { display: none; }
.site-header.is-solid .brand-logo--dark { display: block; }
.site-header.is-solid .main-nav a, .site-header.is-solid .header-controls { color: var(--ink); }
:root[data-theme="dark"] .site-header.is-solid .brand-logo--light { display: block; }
:root[data-theme="dark"] .site-header.is-solid .brand-logo--dark { display: none; }
.main-nav { display: flex; gap: 2.4rem; }
.main-nav a {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  position: relative; opacity: .9; transition: opacity .3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }

.header-controls { display: flex; align-items: center; gap: 1.1rem; }
.lang-toggle {
  font-size: .74rem; letter-spacing: .12em; font-weight: 500;
  display: inline-flex; align-items: center; gap: .35em;
}
.lang-toggle .lang { opacity: .45; transition: opacity .3s; }
.lang-toggle .lang-sep { opacity: .3; }
.lang-toggle[data-active="en"] .lang.en,
.lang-toggle[data-active="el"] .lang.el { opacity: 1; }
/* light/dark switch — lives in the footer (see partials/footer.blade.php) */
.footer-theme {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); transition: color .3s;
}
.footer-theme:hover { color: var(--ink); }
.footer-theme .ft-face { display: none; align-items: center; gap: .5rem; }
/* show the face for the theme you would switch TO */
.footer-theme .ft-to-dark { display: inline-flex; }
:root[data-theme="dark"] .footer-theme .ft-to-dark { display: none; }
:root[data-theme="dark"] .footer-theme .ft-to-light { display: inline-flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; height: 100svh;
  display: flex; flex-direction: column; color: #fff; overflow: visible;
}
/* top: media + brand overlay, fills the space above the selector */
.hero-stage {
  position: relative; z-index: 1; flex: 1 1 auto; min-height: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 1.5rem;
}
/* media fills the WHOLE hero (behind the selector too); its own clip contains the blurred fill */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* per-experience video: mobile fills (cover); crossfades on swap */
.hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s var(--ease);
}
.hero-vid-blur { display: none; } /* only used on desktop as a blurred fill */
.hero-media.is-swapping .hero-vid { opacity: 0; }
.hero-scrim { position: absolute; inset: 0; background: var(--scrim); }
/* desktop-only editorial pieces — hidden on mobile (which keeps the videos) */
.hero-desktop-img, .hero-desktop-fade { display: none; }
.hero-editorial { display: none; }
/* mobile: per-video framing tweaks (gap created by a shift sits behind the opaque selector) */
@media (max-width: 767px) {
  /* Saint: nudge up so its removed-logo top band sits off-screen */
  .hero-media[data-exp="saint"] .hero-vid-main { transform: scale(1.24); transform-origin: 50% 100%; }
  /* Sushi: lift so the platter at the bottom of the shot rises clear of the selector */
  .hero-media[data-exp="sushi"] .hero-vid-main { transform: translateY(-20%); }
}
/* desktop / landscape: static editorial hero (image + left text) — no video */
@media (min-width: 768px) {
  .hero-vid, .hero-scrim { display: none; }
  .hero-desktop-img {
    display: block; position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity .4s ease;
  }
  .hero-media.is-img-swapping .hero-desktop-img { opacity: 0; }
  /* fade the image toward the left so the text column reads (theme-aware via --bg) */
  .hero-desktop-fade {
    display: block; position: absolute; inset: 0;
    background: linear-gradient(90deg,
      var(--bg) 0%, var(--bg) 15%,
      color-mix(in srgb, var(--bg) 55%, transparent) 34%,
      transparent 60%);
  }

  /* left-aligned editorial column */
  .hero-stage {
    align-items: flex-start; justify-content: center; text-align: left;
    padding: 0 clamp(1.5rem, 6vw, 4rem);
  }
  .hero-content { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0; }
  .hero-content > .hero-sub, .hero-content > .hero-cta { display: none; } /* mobile bits off */

  .hero-editorial {
    display: flex; flex-direction: column; align-items: flex-start;
    max-width: 42ch; color: var(--ink);
    padding-bottom: clamp(4.5rem, 12vh, 8rem); /* clear the floating selector bar */
  }
  .hero-kicker { color: var(--sand); margin-bottom: clamp(1rem, 2.4vw, 1.6rem); }
  .hero-title {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 1.02; letter-spacing: .005em;
    color: var(--ink); margin: 0;
  }
  .hero-title-accent { color: var(--sand); }
  .hero-flourish { display: flex; align-items: center; gap: .7rem; margin: clamp(1rem, 2.4vw, 1.5rem) 0; width: min(300px, 60%); }
  .hero-flourish-line { flex: 1; height: 1px; background: linear-gradient(90deg, color-mix(in srgb, var(--sand) 70%, transparent), transparent); }
  .hero-flourish-dot { width: 6px; height: 6px; flex: none; background: var(--sand); transform: rotate(45deg); }
  .hero-lead {
    color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.7;
    max-width: 40ch; margin: 0 0 clamp(1.8rem, 4vw, 2.6rem);
  }
  .hero-editorial .hero-cta--editorial {
    margin-top: 0; align-self: flex-start; display: inline-flex; align-items: center; gap: 1.2rem;
    padding: 1rem 2.4rem; border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--sand) 70%, transparent);
    background: transparent; color: var(--ink);
    font-size: .8rem; letter-spacing: .22em;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .hero-editorial .hero-cta--editorial:hover { background: var(--sand); color: var(--on-accent); border-color: var(--sand); }
  .hero-cta-arrow { font-size: 1.15em; line-height: 1; }
}

.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.hero-content .kicker { margin-bottom: 1.8rem; }
.hero-logo-wrap { margin: 0; }
.hero-logo {
  width: min(540px, 76vw); height: auto; margin: 0 auto;
  filter: drop-shadow(0 4px 44px rgba(0, 0, 0, 0.4));
}
.hero-sub {
  margin-top: 1.4rem; font-size: clamp(.85rem, 1.6vw, 1.05rem);
  letter-spacing: .22em; text-transform: uppercase; font-weight: 300;
  color: rgba(255,255,255,.85);
}
.hero-cta {
  margin-top: clamp(1.6rem, 4vw, 2.4rem); align-self: center;
  padding: .85rem 2.3rem; border: 1px solid rgba(255,255,255,.65); border-radius: 100px;
  color: #fff; font-family: inherit; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(255,255,255,.05); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.hero-cta:hover { background: #fff; color: #10222e; border-color: #fff; }

/* ---- experience selector (bottom of the hero screen) ---- */
.hero-selector {
  position: relative; z-index: 3;
  flex: 0 0 auto; background: var(--bg); color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(.75rem, 2.6vw, 1.1rem) clamp(.9rem, 3vw, 1.5rem) clamp(.7rem, 2.4vw, 1.1rem);
  display: flex; flex-direction: column; gap: clamp(.5rem, 1.8vw, .75rem);
  transition: background-color .6s var(--ease), color .6s var(--ease);
}
.selector-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
/* 6 tiles → two rows of three: Cocktails · Saint · Sushi / Shisha · Pastry · Location */
.exp-tile { grid-column: auto; }
.exp-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  padding: clamp(.6rem, 2.6vw, 1rem) .5rem; background: var(--bg); color: var(--ink); cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.exp-tile:hover, .exp-tile.is-active { background: color-mix(in srgb, var(--ink) 8%, var(--bg)); }
.exp-tile.is-active { color: var(--sand); }
.exp-ico { line-height: 0; }
/* glyph scaled up 15% via transform so the tile keeps its original layout box */
.exp-ico svg { width: 26px; height: 26px; display: block; transform: scale(1.15); }
.exp-label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; }
.exp-reserve {
  padding: .8rem 1rem; border: 1px solid var(--sand); border-radius: 14px; background: transparent;
  color: var(--sand); font-family: inherit; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; cursor: pointer;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.exp-reserve:hover { background: var(--sand); color: var(--on-accent); }

/* desktop: selector becomes a floating bar within the hero's bottom */
@media (min-width: 768px) {
  .hero-selector {
    position: absolute; left: 50%; bottom: clamp(1.2rem, 3.5vh, 2.4rem); transform: translateX(-50%); z-index: 5;
    flex-direction: row; align-items: stretch; gap: 0;
    max-width: var(--maxw); width: calc(100% - clamp(2rem, 6vw, 4rem));
    margin: 0; padding: 0;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 22px 50px -24px rgba(0, 0, 0, .4);
    overflow: hidden;
  }
  .selector-grid {
    flex: 1; grid-template-columns: repeat(6, 1fr); gap: 0;
    background: transparent; border: none; border-radius: 0;
  }
  .exp-tile { grid-column: auto; }
  /* desktop only: Saint Experience leads the row */
  .selector-grid .exp-tile[data-exp="saint"] { order: -1; }
  .exp-tile {
    position: relative; gap: .6rem;
    padding: clamp(1rem, 1.8vw, 1.5rem) .5rem; background: transparent;
    border-right: 1px solid var(--line);
    transition: background-color .3s var(--ease);
  }
  .exp-tile:last-child { border-right: none; }
  .exp-tile:hover { background: color-mix(in srgb, var(--ink) 4%, transparent); }
  .exp-ico { color: var(--sand); }
  .exp-ico svg { width: 30px; height: 30px; }
  .exp-label {
    font-size: .68rem; letter-spacing: .16em; line-height: 1.3; text-align: center;
    color: var(--ink-soft); max-width: 10ch;
  }
  .exp-tile.is-active { color: var(--sand); background: transparent; }
  .exp-tile.is-active .exp-label { color: var(--ink); }
  .exp-tile.is-active::after {
    content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: 34px; height: 2px; background: var(--sand); border-radius: 2px;
  }
  .exp-reserve { display: none; } /* desktop CTA lives in the editorial column */
}
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* ============================================================
   WELCOME
   ============================================================ */
.welcome {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(6rem, 14vw, 11rem) 1.5rem clamp(4rem, 8vw, 6rem);
}
.welcome .kicker { margin-bottom: 2rem; }
.welcome-line {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 5.2vw, 4rem); line-height: 1.12; letter-spacing: .005em;
  color: var(--ink);
}
.welcome-body {
  margin-top: 2rem; max-width: 620px; margin-left: auto; margin-right: auto;
  color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.rule { display: block; width: 60px; height: 1px; background: var(--sand); margin: 3.5rem auto 0; }

/* ============================================================
   SHOWCASE — fanned cards
   ============================================================ */
.showcase { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem); }
.coverflow { position: relative; max-width: var(--maxw); margin: 0 auto; padding-top: 1rem; overflow: hidden; }
.cf-stage {
  position: relative; height: 560px;
  display: flex; align-items: center; justify-content: center;
  touch-action: pan-y; cursor: grab;
}
.cf-stage:active { cursor: grabbing; }
.cf-card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(240px, 26vw, 320px); aspect-ratio: 3 / 4;
  border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--surface);
  transform-origin: center center;
  -webkit-user-select: none; user-select: none;
  transition: transform .7s var(--ease), opacity .7s var(--ease),
              filter .7s var(--ease), box-shadow .7s var(--ease);
  will-change: transform, opacity, filter;
}
/* image is transparent to the pointer so drags/clicks land on the card (no native image-drag) */
.cf-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.cf-card figcaption { pointer-events: none; }
.cf-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.8rem 1rem 1.3rem; text-align: center;
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .04em; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 30, 0.8));
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease) .15s, transform .5s var(--ease) .15s;
}

/* distance-based stack: centre in front & larger, 3 cards tucked BEHIND on each side */
.cf-card[data-dist="0"] {
  transform: translate(-50%, -50%) scale(1.14); opacity: 1; z-index: 6;
  filter: none; box-shadow: var(--shadow-card); cursor: default;
}
.cf-card[data-dist="0"] figcaption { opacity: 1; transform: translateY(0); }
.cf-card[data-dist="1"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 53%)) scale(0.86);
  opacity: 0.74; z-index: 4; filter: blur(2.5px) saturate(.92); box-shadow: var(--shadow-soft);
}
.cf-card[data-dist="2"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 92%)) scale(0.74);
  opacity: 0.48; z-index: 3; filter: blur(4.5px) saturate(.88);
}
.cf-card[data-dist="3"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 128%)) scale(0.62);
  opacity: 0.28; z-index: 2; filter: blur(6.5px) saturate(.82);
}
/* extra cards wait off-stage behind dist-3, invisible, until they rotate in */
.cf-card[data-dist="hidden"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 150%)) scale(0.55);
  opacity: 0; z-index: 1; pointer-events: none;
}
.cf-card[data-dist="1"]:hover { opacity: 0.92; filter: blur(1px); }

/* dots — minimal; active elongates into a soft gold bar */
.cf-dots { display: flex; justify-content: center; align-items: center; gap: .6rem; margin-top: 2.4rem; }
.cf-dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--ink-faint); opacity: .35;
  cursor: pointer; transition: width .45s var(--ease), opacity .4s, background-color .4s;
}
.cf-dot:hover { opacity: .6; }
.cf-dot.is-active { width: 24px; opacity: 1; background: var(--sand); }

/* ============================================================
   SERVICES — tabs + alternating rows
   ============================================================ */
.services { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3rem); background: var(--bg-2); }
.services .section-head, .services .tabs, .services .panels { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.tabs {
  display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--line); margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.tab {
  position: relative; padding: 0 .2rem 1.1rem; font-size: .82rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint); transition: color .4s;
  display: inline-flex; flex-direction: column; align-items: center; gap: .75rem;
}
.tab-ico { line-height: 0; }
/* glyph scaled up 15% via transform so the tab keeps its original layout box */
.tab-ico svg { width: 20px; height: 20px; display: block; transform: scale(1.15); }
.tab::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--sand); transform: scaleX(0); transform-origin: center;
  transition: transform .45s var(--ease);
}
.tab:hover { color: var(--ink-soft); }
.tab.is-active { color: var(--ink); }
.tab.is-active::after { transform: scaleX(1); }

.panel { display: none; }
.panel.is-active { display: block; }

/* cinematic panel + floating frosted-glass card */
.svc-cinema {
  position: relative; overflow: hidden; border-radius: 18px;
  min-height: clamp(440px, 64vh, 640px);
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-card);
}
.svc-slides { position: absolute; inset: 0; }
/* separate mobile / desktop galleries: show one, hide the other */
.svc-slides--mobile { display: none; }
@media (max-width: 767px) {
  .svc-cinema.has-mobile-gallery .svc-slides--desktop { display: none; }
  .svc-cinema.has-mobile-gallery .svc-slides--mobile { display: block; }
}
.svc-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s var(--ease);
  will-change: opacity, transform;
}
.svc-slide.is-active { opacity: 1; animation: svcKen 7s ease-out forwards; }
@keyframes svcKen { from { transform: scale(1.06); } to { transform: scale(1.15); } }
.svc-cinema::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(6, 20, 30, 0.62) 0%, rgba(6, 20, 30, 0.18) 46%, rgba(6, 20, 30, 0) 68%);
}
.svc-glass {
  position: relative; z-index: 2; margin: clamp(1.25rem, 3.5vw, 3rem);
  max-width: 360px; padding: clamp(1.3rem, 2.2vw, 1.9rem);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 16px;
  box-shadow: 0 24px 70px -24px rgba(0, 0, 0, 0.55); color: #fff;
}
.svc-index {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.9rem; line-height: 1; color: var(--sand); margin-bottom: .5rem;
}
.svc-glass h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.1; margin-bottom: .7rem; color: #fff;
}
.svc-glass p { color: rgba(255, 255, 255, 0.9); font-size: .92rem; line-height: 1.55; margin-bottom: 1.1rem; }
.svc-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.svc-chips li {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  padding: .55rem .95rem; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 100px;
  color: #fff; transition: background-color .3s, border-color .3s;
}
.svc-chips li:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.6); }

/* long-press peek (touch): hide the glass to reveal the dish behind it */
.svc-glass { transition: opacity .5s var(--ease), transform .5s var(--ease); -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }
.svc-cinema::after { transition: opacity .5s var(--ease); }
.svc-cinema.is-peeking .svc-glass { opacity: 0; transform: scale(.96) translateY(10px); pointer-events: none; }
.svc-cinema.is-peeking::after { opacity: 0; }

/* ============================================================
   REVIEWS — minimal testimonial slider
   ============================================================ */
.reviews { padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem); text-align: center; }
.reviews .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.reviews-slider { position: relative; max-width: 760px; margin: 0 auto; min-height: clamp(200px, 40vw, 230px); }
.review {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  opacity: 0; transition: opacity 1s var(--ease); pointer-events: none;
}
.review.is-active { opacity: 1; pointer-events: auto; }
.review-stars { color: var(--sand); letter-spacing: .35em; font-size: .95rem; padding-left: .35em; }
.review-quote {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem); line-height: 1.32; color: var(--ink);
  margin: 0; max-width: 680px;
}
.review-name { font-style: normal; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }
.review-dots { display: flex; justify-content: center; align-items: center; gap: .6rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.rv-dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--ink-faint); opacity: .35;
  cursor: pointer; border: none; padding: 0; transition: width .45s var(--ease), opacity .4s, background-color .4s;
}
.rv-dot:hover { opacity: .6; }
.rv-dot.is-active { width: 24px; opacity: 1; background: var(--sand); }

/* ============================================================
   RESERVE — scroll reveal (full image → form rises to cover it)
   ============================================================ */
/* streamlined: image banner, then the form — all in normal document flow */
.reserve-scroll { position: relative; }
.reserve-stage { position: relative; min-height: 100svh; overflow: hidden; background: var(--bg); }
/* terrace photo anchored to the bottom, running behind the editorial header + form */
.reserve-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center bottom; background-repeat: no-repeat; }
/* page-bg only at the very top edge so there's no seam; clears fast so the photo sits behind the heading + fields */
.reserve-bg-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 72%, transparent) 7%,
    color-mix(in srgb, var(--bg) 38%, transparent) 13%,
    transparent 20%);
}
.reserve-panel { position: relative; z-index: 2; color: var(--ink); }
.reserve-panel-inner {
  width: 100%; max-width: 540px; margin: 0 auto; text-align: center;
  /* short tail below the form — just enough photo to breathe, so the shot stays roughly centred */
  padding: clamp(4.5rem, 15vw, 7rem) clamp(1.4rem, 6vw, 2.5rem) clamp(6rem, 20vh, 9.5rem);
}
/* stack date + time full-width like the mock (keep country + phone side-by-side) */
.reserve-panel .rf-row:not(.rf-row--phone) { grid-template-columns: 1fr; }

/* mobile reserve: frosted-glass card fields (the photo blurs through) with hidden labels */
.reserve-panel .rf-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.reserve-panel .rf-control {
  min-height: 3.7rem; background: color-mix(in srgb, var(--surface) 41%, transparent);
  -webkit-backdrop-filter: blur(13px) saturate(1.4);
  backdrop-filter: blur(13px) saturate(1.4);
  border: 1px solid color-mix(in srgb, var(--surface) 45%, var(--line));
  border-radius: 12px; box-shadow: 0 10px 26px -18px rgba(18, 42, 56, .55);
  font-family: var(--font-display);
}
.reserve-panel .rf-input, .reserve-panel .dp-trigger, .reserve-panel .rf-select { font-size: 1.12rem; font-weight: 400; }
/* the glass is transparent enough that --ink-faint placeholders wash out against the photo */
.reserve-panel .rf-input::placeholder { color: var(--ink-soft); }
.reserve-panel .rf-select:invalid,
.reserve-panel .rf-field .dp-trigger .rf-ph { color: var(--ink-soft); }
.reserve-panel .rf-form { gap: .85rem; }
.reserve-panel .rf-nav { margin-top: .6rem; }
.reserve-panel .rf-btn { padding: 1.15rem 1rem; }
/* buttons get the same frosted treatment as the fields so the photo carries through the whole form */
.reserve-panel .rf-btn--primary,
.reserve-panel .rf-btn--primary:hover {
  background: color-mix(in srgb, var(--sand) 58%, transparent);
  -webkit-backdrop-filter: blur(13px) saturate(1.4);
  backdrop-filter: blur(13px) saturate(1.4);
}
/* Back was fully transparent — its label vanished over the photo; a faint fill + blur gives it a surface */
.reserve-panel .rf-btn--ghost,
.reserve-panel .rf-btn--ghost:hover {
  background: color-mix(in srgb, var(--surface) 10%, transparent);
  -webkit-backdrop-filter: blur(13px) saturate(1.4);
  backdrop-filter: blur(13px) saturate(1.4);
  /* 10% fill is too sheer to guarantee contrast wherever the photo lands behind it,
     so the label carries its own page-bg halo (adapts to either theme) */
  text-shadow: 0 0 4px var(--bg), 0 0 4px var(--bg), 0 0 10px var(--bg);
}

/* ============================================================
   CONTACT (form styles reused by the reserve panel)
   ============================================================ */
.contact { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 3rem); }
.contact-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start;
}
.contact-intro .kicker { margin-bottom: 1.1rem; }
.contact-sub { margin: 1.2rem 0 2.6rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 40ch; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; max-width: 520px; }
.field-row { display: flex; gap: 1.5rem; }
.field-row .field { flex: 1; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .7rem 0; resize: none; transition: border-color .4s;
}
.field textarea { line-height: 1.6; }
.field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--sea); }
.field label {
  position: absolute; left: 0; top: .7rem; color: var(--ink-faint);
  font-size: 1rem; letter-spacing: .02em; pointer-events: none;
  transition: transform .35s var(--ease), color .35s, font-size .35s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sea);
}
/* select field: same underline treatment, label sits permanently raised */
.field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .7rem 0; appearance: none; -webkit-appearance: none; cursor: pointer;
  transition: border-color .4s; border-radius: 0;
}
.field select:focus { outline: none; border-bottom-color: var(--sea); }
.field select:invalid { color: var(--ink-faint); }        /* placeholder state */
.field select option { color: #1a1a1a; background: #fff; } /* readable native menu in both themes */
.field--select label {
  transform: translateY(-1.5rem); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sea);
}
.field-caret { position: absolute; right: .1rem; top: .85rem; pointer-events: none; color: var(--ink-faint); font-size: .8rem; }
.btn {
  align-self: flex-start; margin-top: .6rem;
  padding: .95rem 2.4rem; border: 1px solid var(--ink);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  position: relative; overflow: hidden; transition: color .5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--ink); z-index: -1;
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: scaleX(1); }
.form-success { color: var(--sea); font-size: .95rem; letter-spacing: .04em; }

.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-soft); margin-bottom: .6rem; }
.info-label { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sea); margin-bottom: .35rem; }
.info-value { font-size: 1.05rem; color: var(--ink); }
.info-value a { transition: color .3s; }
.info-value a:hover { color: var(--sea); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem); text-align: center; }
.footer-info {
  max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
  text-align: left; padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line);
}
.footer-info .info-block { margin: 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.footer-brand .brand-logo { height: 64px; }
/* footer lockup: SAINT wordmark side by side with the SKY wordmark */
.brand-row { display: inline-flex; align-items: center; gap: clamp(.8rem, 2.4vw, 1.3rem); }
.footer-brand .brand-saint { height: 58px; }
.footer-brand .brand-sky { height: 64px; }
.footer-brand .brand-logo--light { display: none; }
.footer-brand .brand-logo--dark { display: block; }
:root[data-theme="dark"] .footer-brand .brand-logo--light { display: block; }
:root[data-theme="dark"] .footer-brand .brand-logo--dark { display: none; }
.footer-tag { font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: var(--sea); }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); transition: color .3s; }
.footer-nav a:hover { color: var(--ink); }
.footer-rights { font-size: .72rem; letter-spacing: .1em; color: var(--ink-faint); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal].in-view { opacity: 1; transform: none; }

/* page-load stagger (hero) */
.reveal-load { opacity: 0; transform: translateY(24px); animation: revealUp 1.2s var(--ease) forwards; }
.reveal-load.d1 { animation-delay: .2s; }
.reveal-load.d2 { animation-delay: .45s; }
.reveal-load.d3 { animation-delay: .8s; }
.reveal-load.d4 { animation-delay: 1.15s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-img { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }

  /* coverflow: smaller cards, show 3 on mobile */
  .cf-stage { height: 480px; }
  .cf-card { width: min(66vw, 300px); }
  .cf-card[data-dist="1"] { transform: translate(-50%, -50%) translateX(calc(var(--side) * 42%)) scale(0.82); }
  .cf-card[data-dist="2"], .cf-card[data-dist="3"] { opacity: 0; pointer-events: none; }
}

@media (max-width: 680px) {
  /* 5 tabs shrink to fit the phone width in one row */
  .tabs { gap: 0; }
  .tab { flex: 1 1 0; min-width: 0; padding: 0 .05rem 1rem; font-size: .56rem; letter-spacing: .03em; gap: .5rem; }
  .tab-ico svg { width: 21px; height: 21px; }

  /* full-width, taller picture that comes right up under the tabs */
  .svc-cinema { width: 100vw; margin-left: calc(50% - 50vw); border-radius: 0; min-height: 70vh; }
  /* much smaller glass card */
  .svc-glass { max-width: 235px; margin: .9rem; padding: 1rem 1.15rem; }
  .svc-index { font-size: 1.6rem; margin-bottom: .3rem; }
  .svc-glass h3 { font-size: 1.25rem; margin-bottom: .45rem; }
  .svc-glass p { font-size: .78rem; line-height: 1.45; margin-bottom: 0; }
  .svc-chips { display: none; } /* hidden on mobile — long-press the card to see the dish */
  .field-row { flex-direction: column; gap: 1.5rem; }
  /* phones: trim the lockup and control gap so brand + Menu + EN/ΕΛ clear a 360px screen */
  .header-inner { padding: 1rem 1.1rem; gap: .75rem; }
  .header-controls { gap: .85rem; }
  .site-header .brand-sky { height: 39px; }
  .site-header .brand-saint { height: 35px; }
  .brand-row { gap: .7rem; }
  .wordmark { font-size: 1.25rem; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .footer-info { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.2rem; }

  /* full-screen showcase cards on phones */
  .coverflow { width: 100vw; margin-left: calc(50% - 50vw); padding-top: 0; }
  .cf-stage { height: 82vh; }
  .cf-card { width: 100vw; height: 82vh; aspect-ratio: auto; border-radius: 0; }
  /* all cards sit centred & full-bleed; only the active one is visible → clean crossfade */
  .cf-card[data-dist="0"] { transform: translate(-50%, -50%) scale(1); }
  .cf-card[data-dist="1"],
  .cf-card[data-dist="2"],
  .cf-card[data-dist="3"],
  .cf-card[data-dist="hidden"] { transform: translate(-50%, -50%) scale(1); opacity: 0; filter: none; pointer-events: none; }
  .cf-card figcaption { font-size: 1.6rem; padding: 3rem 1.4rem 2.2rem; }
  .cf-dots { margin-top: 1.6rem; }
}

/* ---- reservation form: date/time fields + Livewire validation errors ---- */
.field--static label {
  transform: translateY(-1.5rem); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sea);
}
.field-error { display: block; margin-top: .4rem; font-size: .72rem; letter-spacing: .04em; color: #c0392b; }
:root[data-theme="dark"] .field-error { color: #ff8a80; }

/* ---- custom calendar date picker (Alpine popover, teleported to body) ---- */
[x-cloak] { display: none !important; }

.dp-trigger {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .7rem 0; text-align: left; cursor: pointer; transition: border-color .4s;
}
.dp-trigger:focus { outline: none; border-bottom-color: var(--sea); }
.dp .dp-placeholder { color: var(--ink-faint); }

.dp-pop {
  position: fixed; z-index: 1000;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(8, 26, 38, .45);
  padding: 1rem 1rem 1.1rem;
  font-family: 'Jost', sans-serif;
}
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem; }
.dp-month { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--ink); }
.dp-nav {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--ink); font-size: 1.1rem; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: background-color .25s, opacity .25s;
}
.dp-nav:hover:not(:disabled) { background: var(--line-soft); }
.dp-nav:disabled { opacity: .3; cursor: default; }
.dp-weekdays, .dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-weekdays { margin-bottom: .35rem; }
.dp-weekdays span {
  text-align: center; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); padding: .2rem 0;
}
.dp-day {
  aspect-ratio: 1 / 1; border: none; background: transparent; color: var(--ink);
  font-family: inherit; font-size: .85rem; border-radius: 9px; cursor: pointer;
  transition: background-color .2s, color .2s;
}
.dp-day:hover:not(:disabled):not(.is-selected) { background: var(--line-soft); }
.dp-day.is-empty { pointer-events: none; }
.dp-day.is-today { box-shadow: inset 0 0 0 1px var(--sand); }
.dp-day.is-selected { background: var(--sand); color: var(--on-accent); font-weight: 500; }
.dp-day.is-disabled { color: var(--ink-faint); opacity: .35; cursor: default; }

/* ---- screen-reader-only utility (SEO/a11y headings, visually hidden) ---- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   Reservation form — luxe boxed / gold redesign
   ============================================================ */
/* flourish divider */
.reserve-flourish { display: flex; align-items: center; justify-content: center; gap: .9rem; max-width: 420px; margin: 0 auto clamp(1.1rem, 3vw, 1.5rem); }
.reserve-flourish .rf-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--sand) 55%, transparent)); }
.reserve-flourish .rf-line:last-child { background: linear-gradient(90deg, color-mix(in srgb, var(--sand) 55%, transparent), transparent); }
.reserve-flourish .rf-star { width: 15px; height: 15px; flex: 0 0 auto; fill: var(--sand); }
.reserve-flourish--outro { margin-top: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0; }

/* title + sub + outro — editorial, letter-spaced, matching the mock */
.reserve-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  letter-spacing: .18em; font-size: clamp(1.7rem, 8vw, 2.5rem); line-height: 1;
  color: var(--ink); margin: 0 0 clamp(1rem, 4vw, 1.3rem);
}

/* form shell */
.rf-form {
  --rf-border: color-mix(in srgb, var(--sand) 42%, transparent);
  --rf-fill: color-mix(in srgb, var(--ink) 3.5%, transparent);
  display: flex; flex-direction: column; gap: clamp(1rem, 3vw, 1.25rem);
  text-align: left; max-width: 560px; margin: 0 auto;
}
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.75rem, 3vw, 1.1rem); }
.rf-field { position: relative; display: flex; flex-direction: column; min-width: 0; }
.rf-label { font-size: .66rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: .5rem; }

.rf-control {
  position: relative; min-height: 3.2rem;
  border: 1px solid var(--rf-border); border-radius: 7px; background: var(--rf-fill);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.rf-control:focus-within { border-color: var(--sand); box-shadow: 0 0 0 1px color-mix(in srgb, var(--sand) 40%, transparent); }

/* icon + chevron are decorative overlays — clicks pass straight through to the field beneath */
.rf-ico { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); line-height: 0; color: var(--sand); pointer-events: none; }
.rf-ico svg { width: 20px; height: 20px; display: block; }
.rf-control--area .rf-ico { top: 1.15rem; transform: none; }
.rf-chevron { position: absolute; right: .9rem; top: 50%; transform: translateY(-50%); line-height: 0; color: var(--sand); pointer-events: none; }
.rf-chevron svg { width: 18px; height: 18px; display: block; }

.rf-input {
  width: 100%; background: transparent; border: none; outline: none;
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .95rem .95rem .95rem 2.9rem;
}
.rf-input::placeholder { color: var(--ink-faint); }
.rf-control--select .rf-input { padding-right: 2.6rem; }
textarea.rf-input { resize: none; line-height: 1.55; min-height: 5.5rem; padding-top: .95rem; }
.rf-select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.rf-select:invalid { color: var(--ink-faint); }
.rf-select option { color: #1a1a1a; background: #fff; }

/* date trigger fills the whole control, so a click anywhere (incl. the chevron) opens the calendar */
.rf-field .dp-trigger {
  width: 100%; background: transparent; border: none; outline: none; cursor: pointer; text-align: left;
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .95rem 2.6rem .95rem 2.9rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rf-field .dp-trigger .rf-ph { color: var(--ink-faint); }

/* country dial-code selector + phone */
.rf-row--phone { grid-template-columns: clamp(7.5rem, 40%, 9rem) 1fr; align-items: start; }
.rf-ico--flag { font-size: 20px; line-height: 1; }
.cc-trigger { padding-left: 2.55rem; padding-right: 2.05rem; }

/* phone: dial-code prefix sits in-flow, the number fills the rest */
.rf-control--phone { display: flex; align-items: center; }
.rf-dial { flex: none; padding-left: .95rem; color: var(--sand); font-size: 1rem; font-weight: 300; white-space: nowrap; }
.rf-input--phone { flex: 1 1 auto; padding-left: .45rem; }

/* searchable country popover — mirrors the datepicker shell */
.cc-pop {
  position: fixed; z-index: 1000;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(8, 26, 38, .45);
  padding: .7rem; font-family: 'Jost', sans-serif;
  display: flex; flex-direction: column; max-height: min(340px, 70vh);
}
.cc-search { flex: none; margin-bottom: .5rem; }
.cc-search input {
  width: 100%; box-sizing: border-box; border: 1px solid var(--line); border-radius: 8px;
  background: transparent; color: var(--ink); outline: none;
  font-family: inherit; font-size: .9rem; font-weight: 300; padding: .6rem .8rem;
}
.cc-search input:focus { border-color: var(--sand); }
.cc-search input::placeholder { color: var(--ink-faint); }
.cc-list { list-style: none; margin: 0; padding: 0; overflow-y: auto; flex: 1 1 auto; }
.cc-item {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  border: none; background: transparent; cursor: pointer; text-align: left;
  color: var(--ink); font-family: inherit; font-size: .9rem; font-weight: 300;
  padding: .55rem .6rem; border-radius: 8px; transition: background-color .18s;
}
.cc-item:hover { background: var(--line-soft); }
.cc-item.is-active { background: color-mix(in srgb, var(--sand) 22%, transparent); }
.cc-flag { flex: none; font-size: 18px; line-height: 1; }
.cc-name { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cc-dial { flex: none; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.cc-empty { padding: .8rem .6rem; color: var(--ink-faint); font-size: .85rem; text-align: center; }

.rf-error { display: block; margin-top: .4rem; font-size: .72rem; letter-spacing: .03em; color: #c0392b; }
:root[data-theme="dark"] .rf-error { color: #ff8a80; }

/* submit — solid accent (mono) */
.rf-submit {
  margin-top: .5rem; width: 100%; border: none; cursor: pointer; border-radius: 7px;
  padding: 1.1rem 1rem;
  background: var(--sand);
  color: var(--on-accent); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .22em; text-transform: uppercase;
  transition: background-color .3s var(--ease), transform .08s var(--ease);
}
.rf-submit:hover { background: color-mix(in srgb, var(--sand) 84%, var(--bg)); }
.rf-submit:active { transform: translateY(1px); }
.rf-submit[disabled] { opacity: .6; cursor: default; }

.rf-success { text-align: center; color: var(--sand); font-size: 1.05rem; letter-spacing: .03em; padding: 1.5rem 0; }
.rf-success small { display: inline-block; margin-top: .4rem; color: var(--ink-faint); letter-spacing: .12em; }

/* desktop: a touch more breathing room */
@media (min-width: 768px) {
  .rf-form { gap: 1.35rem; }
  .rf-control { min-height: 3.35rem; }
}

/* ---------- Two-step wizard (hero reservation form) ---------- */
.rf-steps { display: flex; gap: .5rem; margin-bottom: .1rem; }
.rf-step-dot { width: 26px; height: 3px; border-radius: 2px; background: var(--rf-border); transition: background-color .3s var(--ease); }
.rf-step-dot.is-active { background: var(--sand); }

.rf-step { display: flex; flex-direction: column; gap: inherit; }

.rf-nav { display: flex; gap: .75rem; margin-top: .35rem; }
.rf-btn {
  cursor: pointer; border-radius: 7px; padding: .95rem 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .18em; text-transform: uppercase;
  transition: filter .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .08s var(--ease);
}
.rf-btn--ghost { flex: 0 1 auto; background: transparent; border: 1px solid var(--rf-border); color: var(--ink); }
.rf-btn--ghost:hover { border-color: var(--sand); color: var(--sand); }
.rf-btn--primary {
  flex: 1 1 auto; border: none; color: var(--on-accent);
  background: var(--sand);
}
.rf-btn--primary:hover { background: color-mix(in srgb, var(--sand) 84%, var(--bg)); }
.rf-btn:active { transform: translateY(1px); }
.rf-btn[disabled] { opacity: .6; cursor: default; }

/* the hero form fills the editorial column (left-aligned, not centered) */
.hero-reserve { width: 100%; display: none; }        /* hidden until the form is opened */
.hero-reserve .rf-form { max-width: none; margin: 0; }
.hero-reserve .rf-form--wizard { gap: clamp(.85rem, 2.2vh, 1.15rem); }

/* Reservation open/close is a plain class toggle (.is-reserving) rather than Alpine x-show +
   x-transition, which on Safari/WebKit could leave the intro text stuck hidden after Cancel. */
.hero-editorial.is-reserving .hero-intro { display: none; }
.hero-editorial.is-reserving .hero-reserve { display: block; animation: heroFade .25s var(--ease); }
.hero-editorial.is-reserving .hero-kicker { display: none; } /* hide 'Sunset Rituals' while reserving */
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

@media (min-width: 768px) {
  /* desktop reserves via the hero form; the standalone section stays for mobile only */
  .reserve-scroll { display: none; }
  /* widen the editorial column while the form is open so the date/time row breathes */
  .hero-editorial.is-reserving { max-width: 34rem; }
}

/* ============================================================
   LEGAL / POLICY PAGE (Reservation Policy)
   ============================================================ */
.legal-page {
  min-height: 100svh; background: var(--bg); color: var(--ink);
  padding: clamp(7rem, 17vh, 10.5rem) clamp(1.4rem, 6vw, 3rem) clamp(4rem, 10vh, 7rem);
}
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-kicker { color: var(--sand); letter-spacing: .3em; text-transform: uppercase; font-size: .7rem; margin: 0 0 1rem; }
.legal-title {
  font-family: var(--font-display); font-weight: 400; line-height: 1.02;
  font-size: clamp(2.2rem, 7vw, 3.4rem); letter-spacing: .01em; margin: 0 0 .5rem;
}
.legal-meta { color: var(--ink-soft); letter-spacing: .24em; text-transform: uppercase; font-size: .72rem; margin: 0; }
.legal-flourish { display: flex; align-items: center; gap: .9rem; max-width: 340px; margin: clamp(1.6rem, 4vw, 2.2rem) 0 clamp(1.8rem, 4vw, 2.4rem); }
.legal-flourish .rf-line { flex: 1; height: 1px; background: linear-gradient(90deg, color-mix(in srgb, var(--sand) 55%, transparent), transparent); }
.legal-flourish .rf-star { width: 14px; height: 14px; flex: 0 0 auto; fill: var(--sand); }
.legal-lead { font-size: clamp(1.05rem, 2.6vw, 1.2rem); line-height: 1.7; margin: 0 0 1.8rem; color: var(--ink); }
.legal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.05rem; }
.legal-list li { position: relative; padding-left: 1.7rem; line-height: 1.65; color: var(--ink-soft); }
.legal-list li::before {
  content: ""; position: absolute; left: .25rem; top: .6em; width: 6px; height: 6px;
  background: var(--sand); transform: rotate(45deg);
}
.legal-outro {
  margin: clamp(2rem, 5vw, 2.8rem) 0 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.25rem); line-height: 1.6; color: var(--ink);
}
.legal-back { display: inline-block; margin-top: clamp(2.2rem, 5vw, 3rem); color: var(--sand); letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; }
.legal-back:hover { opacity: .7; }

/* ============================================================
   RESERVATION CHECKOUT (/reservation/{token})
   Reuses the legal-page shell; adds the guarantee summary,
   the bank-transfer block and the 4-up policy row.
   ============================================================ */
.co-inner { max-width: 840px; }
.co-section { margin-top: clamp(2.6rem, 6vw, 3.6rem); }
.co-heading {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  letter-spacing: .18em; font-size: clamp(1rem, 3vw, 1.15rem); color: var(--ink);
  margin: 0 0 clamp(1.1rem, 3vw, 1.5rem); padding-bottom: .8rem; border-bottom: 1px solid var(--line);
}

/* status banner — the accent bar carries the meaning, so it reads without colour alone */
.co-status { border-left: 2px solid var(--sand); padding: .1rem 0 .1rem 1.1rem; margin: 0 0 .5rem; }
.co-status--declined { border-left-color: var(--ink-faint); }
.co-status-title { margin: 0 0 .4rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.co-status-body { margin: 0; color: var(--ink-soft); line-height: 1.65; font-size: .95rem; }

/* definition rows — shared by the reservation summary and the bank details */
.co-summary, .co-bank-details { margin: 0; display: flex; flex-direction: column; }
.co-row { display: flex; gap: 1rem; justify-content: space-between; align-items: baseline; padding: .7rem 0; border-bottom: 1px solid var(--line-soft, var(--line)); }
.co-row:last-child { border-bottom: 0; }
.co-row dt { color: var(--ink-soft); letter-spacing: .16em; text-transform: uppercase; font-size: .68rem; }
.co-row dd { margin: 0; text-align: right; color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; }
.co-ref { letter-spacing: .1em; }
.co-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .95rem; letter-spacing: .04em; word-break: break-all; }

.co-amount {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-top: clamp(1.2rem, 3vw, 1.6rem); padding: clamp(1rem, 3vw, 1.3rem);
  border: 1px solid var(--line); border-radius: 12px; background: color-mix(in srgb, var(--ink) 3%, transparent);
}
.co-amount-label { color: var(--ink-soft); letter-spacing: .18em; text-transform: uppercase; font-size: .7rem; }
.co-amount-value { font-family: var(--font-display); font-size: clamp(1.9rem, 6vw, 2.4rem); line-height: 1; color: var(--ink); }

.co-note { margin: 1rem 0 0; color: var(--ink-soft); line-height: 1.65; font-size: .92rem; }
.co-note .co-ref { color: var(--ink); }

/* confirm / abort — the guest's decision point, sitting between the details and the payment block */
/* column-reverse so the primary action leads on mobile while Abort stays first in the DOM
   (tab order + the Back/Continue order used by the reservation form itself) */
.co-actions { display: flex; flex-direction: column-reverse; gap: .8rem; margin-top: clamp(2rem, 5vw, 2.6rem); }
.co-actions form { display: contents; }
.co-actions .rf-btn { width: 100%; }
.co-actions .rf-btn--ghost { border: 1px solid var(--line); color: var(--ink-soft); }
.co-actions .rf-btn--ghost:hover { border-color: var(--sand); color: var(--sand); }
@media (min-width: 620px) {
  .co-actions { flex-direction: row; align-items: stretch; }
  .co-actions .rf-btn--ghost { width: auto; flex: 0 1 auto; }
  .co-actions .rf-btn--primary { width: auto; flex: 1 1 auto; }
}

/* payment method switcher — PayPal is present but inert until it ships */
.co-tabs { display: flex; gap: clamp(1.2rem, 4vw, 2.2rem); flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: clamp(1.4rem, 4vw, 2rem); }
.co-tab { padding-bottom: .8rem; margin-bottom: -1px; letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; color: var(--ink-faint); }
.co-tab.is-active { color: var(--ink); border-bottom: 1px solid var(--sand); }
.co-tab.is-disabled { cursor: default; display: inline-flex; align-items: baseline; gap: .5rem; }
.co-soon { font-style: normal; font-size: .6rem; letter-spacing: .12em; padding: .2rem .45rem; border: 1px solid var(--line); border-radius: 100px; }

.co-bank { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 4vw, 1.8rem); align-items: start; }
.co-bank-ico { color: var(--sand); line-height: 0; }
.co-bank-ico svg { width: 34px; height: 34px; display: block; }
.co-bank-details, .co-bank .co-note { grid-column: 2; }
.co-bank .co-note { margin-top: .9rem; }
.co-locked { margin-top: 0; }

/* 4-up policy row with circular outline icons (mirrors the printed mockup) */
.policy-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 4vw, 2rem); }
.policy-item { display: flex; gap: 1rem; align-items: flex-start; }
.policy-ico {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--sand);
}
.policy-ico svg { width: 20px; height: 20px; display: block; }
.policy-item p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: .92rem; }
.co-home { margin-top: clamp(2.6rem, 6vw, 3.4rem); display: block; }

@media (min-width: 620px) {
  .policy-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .policy-grid { grid-template-columns: repeat(4, 1fr); }
  /* stack icon over text at 4-up, where the columns are too narrow to sit side by side */
  .policy-item { flex-direction: column; gap: .9rem; }
}

/* ============================================================
   MENU PAGE (/menu — sushi + shisha)
   Layout language borrowed from the owner's printed-menu mockups
   (framed collections, hairline dish rows, numbered flavours),
   rendered in the site's own tokens so it themes light/dark.
   ============================================================ */
.menu-page {
  /* Starting values for the sticky rail's offset and the #cat- anchor offset. app.js
     measures the real header and rail and overwrites both — these only have to be close
     enough for the first paint (and for the no-JS case). */
  --hdr: 78px;
  --rail-h: 58px;
  min-height: 100svh; background: var(--bg); color: var(--ink);
  padding: clamp(6.5rem, 16vh, 9.5rem) 0 0;
}
@media (min-width: 768px) { .menu-page { --hdr: 90px; --rail-h: 66px; } }
.menu-page .menu-head,
.menu-page .menu-switch { padding-left: clamp(1.4rem, 6vw, 3rem); padding-right: clamp(1.4rem, 6vw, 3rem); }

/* ---- page head ---- */
.menu-head { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
/* brand lockup: sits on the page background, so it follows the footer's swap rule
   (ink logos in the light theme, white ones in the dark) rather than the header's */
.menu-brand { justify-content: center; margin-bottom: clamp(1.2rem, 3vw, 1.8rem); }
.menu-brand .brand-sky { height: clamp(50px, 7.5vw, 74px); }
.menu-brand .brand-saint { height: clamp(44px, 6.6vw, 64px); }
.menu-brand .brand-logo--light { display: none; }
.menu-brand .brand-logo--dark { display: block; }
:root[data-theme="dark"] .menu-brand .brand-logo--light { display: block; }
:root[data-theme="dark"] .menu-brand .brand-logo--dark { display: none; }
.menu-title {
  font-family: var(--font-display); font-weight: 400; line-height: 1.02;
  font-size: clamp(2.4rem, 8vw, 3.8rem); letter-spacing: .02em; margin: .8rem 0 0; color: var(--ink);
}
.menu-flourish { display: flex; align-items: center; justify-content: center; gap: .9rem; max-width: 300px; margin: clamp(1.1rem, 3vw, 1.5rem) auto 0; }
.menu-flourish .rf-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--sand) 55%, transparent), transparent); }
.menu-flourish .rf-star { width: 14px; height: 14px; flex: 0 0 auto; fill: var(--sand); }
/* ---- sushi / shisha switch — a segmented control, not the site's underline tabs.
       Two options read better as a filled segment, and the active fill matches
       .menu-chip.is-active so the switch and the rail are visibly one system. ---- */
.menu-switch {
  display: flex; justify-content: center; gap: .3rem;
  width: max-content; max-width: 100%; margin: 0 auto;
  padding: .35rem; border: 1px solid var(--line); border-radius: 100px;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.menu-seg {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem clamp(1.1rem, 4vw, 1.9rem); border-radius: 100px;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
  color: var(--ink-soft);
  transition: color .35s var(--ease), background-color .35s var(--ease);
}
.menu-seg:hover { color: var(--ink); }
.menu-seg.is-active { background: var(--sand); color: var(--on-accent); }
.seg-ico { line-height: 0; }
.seg-ico svg { width: 20px; height: 20px; display: block; }

/* ---- the masthead band: each menu's own photo, name and story ---- */
.menu-cinema {
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  min-height: clamp(300px, 46vh, 460px);
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.4rem, 6vw, 3rem);
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  /* full-bleed out of the page's centred column — same idiom as .svc-cinema on phones */
  width: 100vw; margin-left: calc(50% - 50vw);
}
.menu-cinema-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* The scrim is deliberately theme-independent: white-on-photo has to hold over the bright
   sushi shot and the dark shisha one, in both light and dark mode. */
.menu-cinema::after {
  content: ""; position: absolute; inset: 0;
  /* weighted toward the lower half, where the story sits — these photos have bright
     areas down there (the whitewashed wall behind the shisha) that eat white text */
  background: linear-gradient(180deg, rgba(6,20,30,.55) 0%, rgba(6,20,30,.38) 34%, rgba(6,20,30,.58) 72%, rgba(6,20,30,.7) 100%);
}
.menu-story {
  position: relative; z-index: 2; text-align: center; max-width: 42ch; color: #fff;
  /* a wide, soft shadow — invisible as a shadow, but guarantees contrast over any crop */
  text-shadow: 0 1px 24px rgba(6, 20, 30, .55);
}
.menu-story-eyebrow {
  font-size: .68rem; font-weight: 500; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: .9rem;
}
.menu-story-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 5vw, 2.5rem); line-height: 1.12;
  letter-spacing: .16em; text-transform: uppercase; color: #fff;
}
.menu-story-body {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem); line-height: 1.55;
  color: rgba(255,255,255,.92); margin-top: clamp(.9rem, 2.4vw, 1.3rem);
}
/* no photo uploaded and no seeded fallback — render as type on the page, not a broken band */
.menu-cinema--empty { min-height: 0; background: var(--bg); }
.menu-cinema--empty::after { display: none; }
.menu-cinema--empty .menu-story { color: var(--ink); }
.menu-cinema--empty .menu-story-title { color: var(--ink); }
.menu-cinema--empty .menu-story-body { color: var(--ink-soft); }
.menu-cinema--empty .menu-story-eyebrow { color: var(--sea); }
/* phones: a shorter band, so the page head + masthead don't push the first dish off-screen */
@media (max-width: 767px) {
  .menu-cinema { min-height: clamp(240px, 38vh, 320px); padding-top: clamp(2rem, 6vw, 3rem); padding-bottom: clamp(2rem, 6vw, 3rem); }
}

/* ---- sticky category rail: the fast path through a long menu ---- */
.menu-rail {
  position: sticky; top: var(--hdr); z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
/* the rail carries the menu's own name, so you still know where you are once the
   switch has scrolled off the top */
.menu-rail-inner {
  display: flex; align-items: center; gap: .75rem;
  max-width: var(--maxw); margin: 0 auto; padding-left: clamp(1.4rem, 6vw, 3rem);
}
.menu-rail-name {
  display: inline-flex; align-items: center; gap: .5rem; flex: 0 0 auto;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  padding-right: .75rem; border-right: 1px solid var(--line);
}
.menu-rail-name .rail-ico { line-height: 0; }
.menu-rail-name .rail-ico svg { width: 17px; height: 17px; display: block; }
/* phones: the glyph alone, so the label never eats into the chips */
.rail-name-label { display: none; }
@media (min-width: 768px) { .rail-name-label { display: inline; } }

/* One line at every width: centred while it fits, scrolled left/right once it doesn't. */
.menu-rail-track {
  flex: 1 1 auto; min-width: 0;
  display: flex; gap: .5rem; align-items: center; flex-wrap: nowrap;
  padding: .7rem clamp(1.4rem, 6vw, 3rem) .7rem 0;
  overflow-x: auto; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  justify-content: flex-start;   /* fallback for browsers without `safe`: every chip stays reachable */
  justify-content: safe center;  /* plain `center` would push the first chips out of scroll range */
  /* fade the edges so it reads as scrollable */
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.menu-rail-track::-webkit-scrollbar { display: none; }
/* drag support, so a mouse-only desktop can pan the rail as well as a trackpad can */
.menu-rail-track.is-scrollable { cursor: grab; }
.menu-rail-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.menu-rail-track.is-dragging .menu-chip { pointer-events: none; }
.menu-chip {
  flex: 0 0 auto; scroll-snap-align: center;
  padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 100px;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  color: var(--ink-soft); transition: color .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
}
.menu-chip:hover { color: var(--ink); border-color: color-mix(in srgb, var(--ink) 30%, transparent); }
.menu-chip.is-active { background: var(--sand); border-color: var(--sand); color: var(--on-accent); }
@media (min-width: 768px) {
  .menu-rail-track { gap: .6rem; padding-top: .8rem; padding-bottom: .8rem; }
  .menu-chip { font-size: .68rem; padding: .55rem 1.15rem; }
}

/* switching menus should feel like something happened — .panel is otherwise a hard
   display swap. Scoped to .menu-page so the Experience section keeps its instant switch.
   The global prefers-reduced-motion rule already collapses this to .01ms. */
.menu-page .panels > .panel.is-active { animation: menuPanelIn .5s var(--ease) both; }
@keyframes menuPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ---- category band ---- */
.menu-cat {
  padding: clamp(2.6rem, 6vw, 4rem) clamp(1.4rem, 6vw, 3rem);
  /* clears the fixed header AND the sticky rail when jumped to from a chip */
  scroll-margin-top: calc(var(--hdr) + var(--rail-h) + 8px);
}
.menu-cat--alt { background: var(--bg-2); }
.menu-wrap { max-width: 780px; margin: 0 auto; }
.menu-cat-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.menu-cat-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.35rem, 4vw, 1.9rem); line-height: 1.15;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.menu-cat-note {
  max-width: 44ch; margin: clamp(.9rem, 2.4vw, 1.2rem) auto 0;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.1rem); line-height: 1.6; color: var(--ink-soft);
}

/* ---- dish rows (list layout) ---- */
.menu-dishes { display: flex; flex-direction: column; }
.menu-dish {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: .5rem clamp(1rem, 3vw, 2rem);
  padding: clamp(1.1rem, 2.8vw, 1.5rem) 0; border-bottom: 1px solid var(--line);
}
.menu-dish:first-child { padding-top: 0; }
.menu-dish:last-child { border-bottom: none; padding-bottom: 0; }
.menu-dish:has(.menu-photo) { grid-template-columns: auto 1fr auto; }
.menu-photo { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; align-self: start; }
.dish-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: .1rem .5rem; }
.dish-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.1rem, 2.7vw, 1.28rem); line-height: 1.25; letter-spacing: .01em; color: var(--ink);
}
.dish-meta { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.dish-meta::before { content: "·"; margin-right: .45rem; color: var(--line); }
.dish-veg { font-family: var(--font-display); font-style: italic; font-size: .88rem; color: var(--sea); }
.dish-veg::before { content: "("; }
.dish-veg::after { content: ")"; }
.dish-desc {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(.96rem, 2.2vw, 1.05rem); line-height: 1.55; color: var(--ink-soft); margin-top: .3rem;
}
.dish-contents { list-style: none; margin: .7rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .2rem; }
.dish-contents li { position: relative; padding-left: 1.1rem; font-size: .92rem; line-height: 1.5; color: var(--ink-soft); }
.dish-contents li::before { content: "—"; position: absolute; left: 0; color: var(--sand); opacity: .55; }
.dish-price {
  font-family: var(--font-display); font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--ink); white-space: nowrap; align-self: start; padding-top: .1rem;
}

/* ---- two-price tiers (sashimi | nigiri) ---- */
.menu-tiers { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 2.2rem); max-width: 640px; margin: 0 auto; }
.menu-tier { text-align: center; padding-bottom: clamp(1.4rem, 3.5vw, 1.9rem); border-bottom: 1px solid var(--line); }
.menu-tiers .menu-tier:last-child { border-bottom: none; padding-bottom: 0; }
.tier-name { font-size: .88rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); }
.tier-meta { font-family: var(--font-display); font-style: italic; font-size: .95rem; color: var(--ink-faint); margin-top: .3rem; }
.tier-prices { display: flex; align-items: stretch; justify-content: center; gap: clamp(1.4rem, 4vw, 2.2rem); margin-top: .9rem; }
.tier-price { display: flex; flex-direction: column; gap: .3rem; }
.tier-price-label { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }
.tier-price-amt { font-family: var(--font-display); font-size: 1.2rem; color: var(--sand); }
.tier-sep { width: 1px; background: var(--line); }
@media (min-width: 768px) {
  .menu-tiers { grid-template-columns: repeat(2, 1fr); gap: clamp(1.8rem, 4vw, 2.4rem) clamp(2.5rem, 6vw, 4rem); }
  /* two columns: the last pair is the bottom row, so it loses the rule instead of just the last item */
  .menu-tiers .menu-tier:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}

/* ---- shisha collections: hairline frame + corner ticks + numbered flavours ---- */
.menu-flavors {
  position: relative; border: 1px solid var(--line);
  padding: clamp(1.9rem, 4.5vw, 2.8rem) clamp(1.2rem, 4vw, 2.4rem);
}
/* four ticks need two elements: the box draws the top pair, .menu-frame-in the bottom pair */
.menu-flavors::before, .menu-flavors::after,
.menu-frame-in::before, .menu-frame-in::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--sand); pointer-events: none;
}
.menu-flavors::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.menu-flavors::after { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.menu-frame-in::before { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.menu-frame-in::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.flavors-price { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: clamp(1.3rem, 3.5vw, 1.9rem); }
.flavors-price .fp-line { width: clamp(36px, 12vw, 64px); height: 1px; background: var(--line); }
.flavors-price .fp-amt { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.45rem); color: var(--sand); letter-spacing: .02em; }
.flavor-list { list-style: none; margin: 0; padding: 0; }
.flavor {
  display: grid; grid-template-columns: 1.8rem 1fr; align-items: baseline; gap: .2rem .9rem;
  padding: clamp(.85rem, 2.4vw, 1.1rem) 0; border-bottom: 1px solid var(--line-soft);
}
.flavor:first-child { padding-top: 0; }
.flavor:last-child { border-bottom: none; padding-bottom: 0; }
.flavor:has(.flavor-price) { grid-template-columns: 1.8rem 1fr auto; }
.flavor-code { font-family: var(--font-display); font-style: italic; font-size: .95rem; color: var(--sand); }
.flavor-body { display: flex; flex-direction: column; gap: .25rem; }
.flavor-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.08rem, 2.6vw, 1.22rem); letter-spacing: .02em; color: var(--ink); }
.flavor-notes { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; line-height: 1.5; color: var(--ink-faint); }
.flavor-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); white-space: nowrap; }

/* ---- foot: VAT note + reservation CTA ---- */
.menu-foot {
  display: flex; flex-direction: column; align-items: center; gap: clamp(1.4rem, 3.5vw, 2rem);
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.4rem, 6vw, 3rem) clamp(4rem, 9vh, 6rem);
  border-top: 1px solid var(--line);
}
.menu-vat { font-family: var(--font-display); font-style: italic; font-size: .95rem; letter-spacing: .03em; color: var(--ink-faint); }
/* .btn is authored for a left-aligned flex column; centre it and keep its sweep contained */
.menu-cta { align-self: center; margin-top: 0; isolation: isolate; }

/* ---- header: menu link that survives the <900px nav collapse ---- */
.header-menu-link {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: inherit;
  padding: .4rem .1rem; position: relative; opacity: .9;
}
.header-menu-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .1rem; height: 1px;
  background: currentColor; opacity: .45;
}
.header-menu-link:hover { opacity: 1; }
@media (min-width: 901px) { .header-menu-link { display: none; } }

/* ============================================================
   MENU CATALOGUE (the Event Menu)
   A printed object: leather cover + cream page. Its palette is
   deliberately FIXED in both themes — the site's --sand accent is
   monochrome (#111 / #f4f8fb), so the gold below is its own set of
   tokens, scoped here so none of it leaks into the rest of the site.
   ============================================================ */
.menu-catalogue {
  --cat-plum: #3a2440;
  --cat-plum-2: #241628;
  --cat-gold: #c8a35a;
  --cat-gold-soft: #a8874a;
  --cat-paper: #f7f3ea;
  --cat-ink: #2c2230;
  --cat-ink-soft: #6a5a62;
  --cat-hair: rgba(200, 163, 90, .34);
  padding: clamp(1.4rem, 5vw, 3rem) clamp(1.1rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
}
/* contained and centred, not full-bleed: it should read as an object on the page */
.cat-book {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .cat-book { grid-template-columns: 38% 1fr; } }

/* ---- the leather cover ---- */
.cat-spine {
  position: relative; overflow: hidden; color: var(--cat-gold);
  background:
    /* broad mottling, so the hide doesn't read as a flat gradient */
    radial-gradient(38% 26% at 18% 30%, rgba(255,255,255,.05), transparent 70%),
    radial-gradient(30% 22% at 72% 62%, rgba(255,255,255,.04), transparent 70%),
    radial-gradient(120% 90% at 25% 12%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(100% 70% at 85% 96%, rgba(0,0,0,.45), transparent 62%),
    linear-gradient(155deg, var(--cat-plum) 0%, var(--cat-plum-2) 100%);
}
/* Element-local grain — the site's .grain is position:fixed viewport-wide, so it cannot
   scroll with this panel.
   Plain turbulence reads as smoke, not hide. What makes this look like leather is
   feDiffuseLighting: the turbulence is treated as a height map and lit from the upper left,
   so each pebble gets a real highlight and a shadow. Two layers, combined with
   background-blend-mode rather than stacked — the lighting filter outputs an OPAQUE image,
   so a second background layer beneath it would simply never be seen.
     · pores  (top)    fine speckle, softens the emboss
     · pebble (bottom) the lit grain itself
   Light direction (azimuth 225°) matches the sheen on .cat-spine above. */
.cat-spine::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .58; mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='440'%3E%3Cfilter id='e' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.28' numOctaves='4' seed='11' stitchTiles='stitch' result='n'/%3E%3CfeDiffuseLighting in='n' lighting-color='%23ffffff' surfaceScale='2.2' diffuseConstant='1'%3E%3CfeDistantLight azimuth='225' elevation='55'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23e)'/%3E%3C/svg%3E");
  /* a large tile keeps the repeat out of sight; the fine pore layer breaks up what's left */
  background-size: 140px 140px, 440px 440px;
  background-blend-mode: soft-light;
}
/* the lit edge where the cover curves toward the page */
.cat-spine::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent);
}
@media (min-width: 768px) {
  .cat-spine::after {
    inset: 0 0 0 auto; width: 10px; height: auto;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12));
  }
}
/* an uploaded photograph replaces the generated leather */
.cat-spine--photo { background-size: cover; background-position: center; }
.cat-spine--photo::before { opacity: .10; }

.cat-spine-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .55rem; text-align: center;
  padding: clamp(1.6rem, 5vw, 3rem) clamp(1.1rem, 3vw, 2rem);
}
.cat-mark { line-height: 0; }
.cat-mark svg { width: clamp(34px, 5vw, 48px); height: clamp(34px, 5vw, 48px); display: block; }
.cat-wordmark { line-height: 0; margin-top: .3rem; }
.cat-wordmark svg { width: clamp(120px, 17vw, 190px); height: auto; display: block; }
.cat-place {
  font-size: clamp(.56rem, 1.2vw, .66rem); letter-spacing: .42em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cat-gold) 82%, transparent); margin-left: .42em;
}
.cat-divider { display: flex; align-items: center; justify-content: center; gap: .6rem; width: min(160px, 60%); margin: .5rem 0; }
.cat-dline { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--cat-gold-soft), transparent); }
.cat-dia { width: 6px; height: 6px; flex: 0 0 auto; fill: var(--cat-gold); }
.cat-sub {
  font-size: clamp(.72rem, 1.7vw, .95rem); letter-spacing: .34em; text-transform: uppercase;
  color: var(--cat-gold); margin-left: .34em;
}
.cat-spine-foot {
  font-size: clamp(.52rem, 1.1vw, .6rem); letter-spacing: .3em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cat-gold) 72%, transparent); margin-left: .3em;
}
@media (min-width: 768px) {
  /* on desktop the cover is tall: the lockup sits centred, the foot line at the bottom */
  .cat-spine-inner { justify-content: center; }
  .cat-spine-foot { position: absolute; left: 0; right: 0; bottom: clamp(1.6rem, 4vw, 2.6rem); }
}

/* ---- the cream page ---- */
.cat-page { position: relative; background: var(--cat-paper); }
/* double gold rule; the outer element draws one, its child the second */
.cat-frame {
  position: absolute; inset: clamp(10px, 1.8vw, 18px); pointer-events: none;
  border: 1px solid var(--cat-gold-soft);
}
.cat-frame-in { position: absolute; inset: 5px; border: 1px solid var(--cat-hair); display: block; }
/* corner ticks, same two-element trick as .menu-flavors */
.cat-frame::before, .cat-frame::after,
.cat-frame-in::before, .cat-frame-in::after {
  content: ""; position: absolute; width: 13px; height: 13px; border: 1px solid var(--cat-gold);
}
.cat-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.cat-frame::after { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.cat-frame-in::before { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.cat-frame-in::after { bottom: -6px; right: -6px; border-left: none; border-top: none; }

.cat-page-inner {
  position: relative; z-index: 2; text-align: center;
  padding: clamp(2.2rem, 5.5vw, 3.6rem) clamp(1.5rem, 5vw, 3.2rem) clamp(1.8rem, 4.5vw, 3rem);
}
/* the small hanging gem at the top of the page */
.cat-drop { display: inline-flex; flex-direction: column; align-items: center; margin-bottom: clamp(1rem, 3vw, 1.8rem); }
.cat-drop-line { width: 1px; height: clamp(22px, 5vw, 38px); background: linear-gradient(180deg, transparent, var(--cat-gold-soft)); }
.cat-drop .cat-dia { width: 8px; height: 8px; margin-top: 2px; }

.cat-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 5.2vw, 2.6rem); line-height: 1.12;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cat-ink);
  margin-left: .18em;
}
.cat-rule { display: flex; align-items: center; justify-content: center; gap: .7rem; width: min(320px, 78%); margin: clamp(.7rem, 2vw, 1rem) auto; }
.cat-kicker {
  font-size: clamp(.62rem, 1.6vw, .76rem); letter-spacing: .26em; text-transform: uppercase;
  color: var(--cat-gold-soft); margin-left: .26em;
}
.cat-section {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(.9rem, 2.4vw, 1.1rem);
  letter-spacing: .2em; text-transform: uppercase; color: var(--cat-gold-soft);
  margin: clamp(1.4rem, 4vw, 2rem) 0 .6rem;
}

/* ---- the numbered list ---- */
.cat-list {
  position: relative; list-style: none; margin: clamp(1.2rem, 3.5vw, 2rem) 0 0; padding: 0;
  text-align: left;
}
/* the hairline the diamonds sit on */
.cat-list::before {
  content: ""; position: absolute; top: .2rem; bottom: .2rem;
  left: calc(2.1rem + 4px); width: 1px; background: var(--cat-hair);
}
.cat-item {
  display: grid; grid-template-columns: 2.1rem 9px minmax(0, 1fr);
  align-items: baseline; gap: 0 clamp(.6rem, 1.6vw, .95rem);
  padding: clamp(.55rem, 1.6vw, .8rem) 0;
  border-bottom: 1px solid var(--cat-hair);
}
.cat-item:last-child { border-bottom: none; }
.cat-item:has(.cat-item-price) { grid-template-columns: 2.1rem 9px minmax(0, 1fr) auto; }
.cat-num {
  font-family: var(--font-display); font-size: clamp(.95rem, 2.3vw, 1.1rem);
  color: var(--cat-ink); text-align: right; white-space: nowrap;
}
.cat-bullet { line-height: 0; position: relative; top: -.15em; }
.cat-bullet .cat-dia { width: 7px; height: 7px; }
.cat-item-body { display: block; min-width: 0; }
.cat-item-name {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 1.18rem); line-height: 1.25;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cat-ink);
}
.cat-item-desc {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(.92rem, 2.3vw, 1.02rem); line-height: 1.4;
  color: var(--cat-ink-soft); margin-top: .18rem;
}
.cat-item-price { font-family: var(--font-display); font-size: 1.05rem; color: var(--cat-gold-soft); white-space: nowrap; }

.cat-sprig { display: block; margin: clamp(1.6rem, 4vw, 2.6rem) auto 0; color: var(--cat-gold-soft); line-height: 0; }
.cat-sprig svg { width: clamp(90px, 22vw, 130px); height: auto; display: block; margin: 0 auto; }
