/* Boat Shed Cafe concept. One day at the water: sea-glass morning, white midday,
   terracotta golden hour, navy dusk. Fonts are self-hosted so the folder opens from disk. */

@font-face { font-family: "Bodoni Moda"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/bodoni-moda-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Bodoni Moda"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/bodoni-moda-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Bodoni Moda"; font-style: italic; font-weight: 400; font-display: swap; src: url("../assets/fonts/bodoni-moda-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/hanken-grotesk-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/hanken-grotesk-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/hanken-grotesk-latin-600-normal.woff2") format("woff2"); }

:root {
  --sea: #267698;
  --sea-deep: #1c5f7d;
  --ink: #14202b;
  --ink-soft: #3d4c58;
  --glass: #e6f0f0;
  --white: #f7f9f9;
  --ember: #b4532e;
  --ember-deep: #9b4525;
  --dusk: #16255e;
  --dusk-line: rgba(233, 240, 246, 0.18);
  --dusk-soft: #c4cff2;
  --dusk-text: #dfe6ff;
  --line: rgba(20, 32, 43, 0.16);

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --text: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --r: 6px;
  --gutter: clamp(20px, 5vw, 56px);
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 56px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
h1, h2, h3, h4, p, ul, dl, figure { margin: 0; }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .ember :focus-visible, .hero :focus-visible, .nav:not(.is-solid) :focus-visible { outline-color: #fff; }
::selection { background: var(--sea); color: #fff; }
.icon { width: 1.15em; height: 1.15em; flex: none; }
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; color: var(--ink); padding: 10px 14px; border-radius: var(--r); z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  min-height: 48px; padding: 0 26px;
  font: 600 1rem/1 var(--text); letter-spacing: 0.01em; white-space: nowrap;
  text-decoration: none; border-radius: var(--r); border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-book { background: var(--sea); color: #fff; }
.btn-book:hover { background: var(--sea-deep); }
.btn-line { border-color: currentColor; color: inherit; }
.btn-line:hover { background: rgba(255, 255, 255, 0.14); }
.on-light .btn-line:hover { background: rgba(20, 32, 43, 0.06); }
/* white on the terracotta chapter only: sea blue vibrates against rust */
.ember .btn-book { background: #fff; color: var(--ember-deep); }
.ember .btn-book:hover { background: #f4e7e0; }
.on-dark .btn-book { background: var(--sea); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34); }
.on-dark .btn-book:hover { background: var(--sea-deep); }
.link-out { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 600; }

/* ---------- header ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  color: #fff;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav::before { /* legibility scrim over bright sky */
  content: ""; position: absolute; inset: 0 0 -40px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(9, 24, 38, 0.6), rgba(9, 24, 38, 0));
  transition: opacity 0.35s var(--ease);
}
.nav.is-solid { background: var(--white); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.nav.is-solid::before { opacity: 0; }
.nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; line-height: 0; flex: none; }
.brand img { width: 128px; height: auto; transition: filter 0.35s var(--ease); }
.nav.is-solid .brand img { filter: brightness(0) opacity(0.88); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); font-size: 0.95rem; font-weight: 500; }
.nav-links a:not(.btn) { text-decoration: none; padding: 8px 0; background: linear-gradient(currentColor, currentColor) left bottom / 0 1px no-repeat; transition: background-size 0.3s var(--ease); }
.nav-links a:not(.btn):hover { background-size: 100% 1px; }
.nav-links a.btn { text-decoration: none; }
.nav .btn { min-height: 42px; padding: 0 20px; font-size: 0.95rem; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: #24475c; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 0% 45%; transform-origin: 20% 60%; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8, 20, 33, 0.9) 0%, rgba(8, 20, 33, 0.66) 30%, rgba(8, 20, 33, 0.18) 58%, rgba(8, 20, 33, 0) 72%);
}
.hero .wrap { position: relative; z-index: 2; padding-block: 0 clamp(36px, 7vh, 72px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; }
.hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(2.5rem, 5.6vw, 5.25rem); line-height: 1.04; letter-spacing: -0.015em; text-wrap: balance; }
.hero h1 span { display: block; }
.hero h1 em { font-style: italic; }
.hero-deck { margin-top: 22px; max-width: 34rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.55; color: #eef4f8; }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-live { align-self: end; text-align: right; font-size: 0.98rem; line-height: 1.5; color: #eef4f8; padding-bottom: 6px; }
.hero-live strong { display: flex; align-items: center; justify-content: flex-end; gap: 8px; font-weight: 600; color: #fff; font-size: 1.05rem; }
.hero-live .icon { color: #ffd9a8; width: 1.3em; height: 1.3em; }

/* ---------- day line ---------- */
.day { background: var(--white); padding-block: clamp(56px, 8vw, 104px); }
.day h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
.day-sub { margin-top: 12px; max-width: 40rem; color: var(--ink-soft); }
.axis { margin-top: 150px; position: relative; height: 12px; }
.axis-track { position: absolute; inset: 0; border-radius: 6px; background: rgba(20, 32, 43, 0.12); }
.axis-open { position: absolute; top: 0; bottom: 0; border-radius: 6px 0 0 6px; background: linear-gradient(to right, var(--sea) 0%, var(--sea) 88%, rgba(38, 118, 152, 0.35) 100%); }
.axis-bistrot { position: absolute; top: 0; bottom: 0; border-radius: 6px 0 0 6px; background: linear-gradient(to right, var(--ember) 0%, var(--ember) 88%, rgba(180, 83, 46, 0.4) 100%); }
.mark { position: absolute; bottom: 0; width: 0; font-size: 0.9rem; line-height: 1.3; white-space: nowrap; }
.mark::before { content: ""; position: absolute; left: -0.5px; bottom: 0; width: 1px; background: currentColor; height: var(--h, 48px); }
.mark span { position: absolute; left: 8px; bottom: calc(var(--h, 48px) - 4px); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.mark small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.82rem; }
.mark--open { color: var(--sea-deep); --h: 38px; }
.mark--bistrot { color: var(--ember-deep); --h: 78px; }
.mark--sunset { color: #8a3a1c; --h: 118px; }
.mark--sunset span, .mark--bistrot span, .mark--open span { display: block; }
.mark--sunset .icon { vertical-align: -0.2em; margin-right: 4px; }
.mark--edge span { left: auto; right: 8px; text-align: right; }
.mark--edge::before { display: block; }
.axis-ticks { position: absolute; left: 0; right: 0; top: 24px; height: 24px; font-size: 0.8rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.axis-ticks span { position: absolute; transform: translateX(-50%); }
.axis-ticks span:first-child { transform: none; }
.axis-ticks span:last-child { transform: translateX(-100%); }
.axis-now { position: absolute; top: -12px; bottom: -44px; width: 0; color: var(--ink); z-index: 3; }
.axis-now::before { content: ""; position: absolute; left: -0.5px; top: 0; bottom: 0; border-left: 1px dashed currentColor; }
.axis-now span { position: absolute; left: 6px; bottom: 0; font-size: 0.8rem; font-weight: 600; background: var(--white); padding: 0 4px; }
.axis[hidden], .day-fallback[hidden] { display: none; }
[hidden] { display: none !important; }
.axis.has-bistrot .axis-open { background: var(--sea); border-radius: 6px 0 0 6px; }
.day-chapters { margin-top: 84px; display: grid; grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.day-chapters a { display: block; padding: 20px 20px 22px 0; text-decoration: none; border-right: 1px solid var(--line); padding-left: 20px; transition: background-color 0.25s var(--ease); }
.day-chapters a:first-child { padding-left: 0; }
.day-chapters a:last-child { border-right: 0; }
.day-chapters a:hover { background: var(--glass); }
.day-chapters b { display: block; font-family: var(--display); font-weight: 500; font-size: 1.35rem; line-height: 1.2; }
.day-chapters span { display: block; margin-top: 4px; font-size: 0.92rem; color: var(--ink-soft); }
.day-chapters .go { display: inline-flex; margin-top: 10px; font-weight: 600; font-size: 0.9rem; color: var(--sea-deep); }
.day-fallback { margin-top: 32px; }

/* ---------- chapters ---------- */
.chapter { padding-block: clamp(72px, 10vw, 136px); }
.chapter h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2.1rem, 4.4vw, 3.9rem); line-height: 1.06; letter-spacing: -0.012em; text-wrap: balance; }
.chapter h2 em { font-style: italic; }
.lede { margin-top: 18px; max-width: 32rem; font-size: 1.12rem; }
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.split.flip { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.photo { overflow: hidden; border-radius: var(--r); background: #cfdcdc; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.ratio-tall { aspect-ratio: 4 / 5; }
.ratio-wide { aspect-ratio: 21 / 8; }
.ratio-land { aspect-ratio: 5 / 4; }

.morning { background: var(--glass); }
.midday { background: var(--white); }
.ember { background: var(--ember); color: #fff; }
.ember .lede, .ember p { color: #fff; }
.ember .photo { background: #8a3a1c; }

/* menu typography */
.menu { margin-top: 36px; }
.menu-group + .menu-group { margin-top: 30px; }
.menu-group h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; line-height: 1.2; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.on-dark .menu-group h3 { border-color: var(--dusk-line); }
.dish { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 20px; padding-top: 16px; align-items: baseline; }
.dish h4 { font: 600 1.02rem/1.35 var(--text); }
.dish .price { font-weight: 500; font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.dish p { grid-column: 1; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.5; margin-top: 2px; }
.on-dark .dish p { color: var(--dusk-soft); }
.tag { display: inline-block; margin-left: 8px; padding: 1px 6px; border: 1px solid currentColor; border-radius: 3px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; vertical-align: 0.1em; color: var(--ink-soft); }
.on-dark .tag { color: var(--dusk-soft); }
.legend { margin-top: 20px; font-size: 0.88rem; color: var(--ink-soft); }
.on-dark .legend { color: var(--dusk-soft); }
.snapshot { margin-top: 12px; font-size: 0.85rem; color: var(--ink-soft); }
.on-dark .snapshot { color: var(--dusk-soft); }

details.more { margin-top: 28px; border-top: 1px solid var(--line); }
.on-dark details.more { border-color: var(--dusk-line); }
details.more > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 600; min-height: 56px; }
details.more > summary::-webkit-details-marker { display: none; }
details.more > summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); transition: transform 0.3s var(--ease); flex: none; }
details.more[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
details.more > .menu { margin-top: 4px; padding-bottom: 8px; }
.menu-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(32px, 6vw, 88px); }
.menu-cols .menu-group { margin-top: 30px; }
.menu-cols .menu-group:first-child, .menu-cols .menu-group:nth-child(2) { margin-top: 0; }

/* lunch layout */
.lunch-head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; margin-bottom: clamp(32px, 4vw, 56px); }
.lunch-band { margin-bottom: clamp(36px, 5vw, 64px); }
.lunch-band .photo img { object-position: 50% 62%; }

/* golden hour */
.ember h2 { max-width: 14ch; }
.ember .facts { margin-top: 28px; display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.4); max-width: 30rem; }
.ember .facts div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.4); font-variant-numeric: tabular-nums; }
.ember .facts dt { font-weight: 500; }
.ember .facts dd { margin: 0; font-weight: 600; text-align: right; }
.actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

/* dusk */
.dusk { background: var(--dusk); color: #eaf0f5; }
.dusk h2 { color: #fff; }
.dusk p { color: var(--dusk-text); }
.dusk .tc-lede { margin-top: 18px; max-width: 30rem; font-size: 1.12rem; }
.tc-prices { margin-top: 32px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--dusk-line); max-width: 32rem; }
.tc-prices div { padding: 18px 0 20px; }
.tc-prices div + div { padding-left: 24px; border-left: 1px solid var(--dusk-line); }
.tc-prices b { display: block; font-family: var(--display); font-weight: 400; font-size: 2.6rem; line-height: 1; color: #fff; font-variant-numeric: lining-nums; }
.tc-prices span { display: block; margin-top: 8px; font-size: 0.94rem; color: var(--dusk-soft); }
.dusk .photo { background: #1e2f70; }
.dusk .dinner { margin-top: clamp(56px, 7vw, 88px); }

/* functions + vouchers */
.services { margin-top: clamp(64px, 9vw, 120px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--dusk-line); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(40px, 7vw, 112px); }
.services h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.12; color: #fff; }
.services p { margin-top: 14px; max-width: 34rem; }
.services ul { margin-top: 18px; display: grid; gap: 8px; color: var(--dusk-text); }
.services li { display: flex; gap: 12px; }
.services li b { min-width: 6.4rem; font-weight: 600; color: #fff; }
.services .btn { margin-top: 26px; }

/* visit */
.visit { background: linear-gradient(rgba(12, 21, 64, 0.72), rgba(12, 21, 64, 0.88)), url("../assets/img/hero.jpg") 50% 94% / cover #0c1540; color: #eaf0f5; padding-block: clamp(64px, 8vw, 104px) 32px; }
.visit h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; line-height: 1.08; }
.visit-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px clamp(24px, 5vw, 72px); padding-top: 32px; border-top: 1px solid var(--dusk-line); }
.visit h3 { font: 600 0.95rem/1.3 var(--text); color: #fff; margin-bottom: 10px; }
.visit p, .visit li { color: #cdd6f4; font-size: 1rem; }
.visit address { font-style: normal; color: #cdd6f4; }
.visit a { color: #fff; }
.visit .contact a { display: inline-flex; align-items: center; min-height: 44px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; max-width: 20rem; padding: 3px 0; font-variant-numeric: tabular-nums; }
.visit .socials { display: flex; gap: 14px; margin-top: 4px; }
.visit .socials a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; min-height: 44px; }
.visit .socials .icon { width: 1.4em; height: 1.4em; }
.visit .btn { margin-top: 18px; }
.foot { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--dusk-line); font-size: 0.86rem; color: #b4bfe8; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 32px; }

/* ---------- motion (content is visible unless JS opts in) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-img { animation: settle 2.6s var(--ease) both; }
  .hero h1, .hero-deck, .hero-cta, .hero-live { animation: rise 1.1s var(--ease) both; }
  .hero-deck { animation-delay: 0.12s; }
  .hero-cta { animation-delay: 0.22s; }
  .hero-live { animation-delay: 0.34s; }
}
@keyframes settle { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav-links a.hide-md { display: none; }
}
@media (max-width: 860px) {
  :root { --nav-h: 60px; }
  .brand img { width: 108px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 0; color: inherit; cursor: pointer; margin-right: -8px; }
  .nav-toggle .icon { width: 26px; height: 26px; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); color: var(--ink); padding: 8px var(--gutter) 24px; font-size: 1.1rem;
    border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px -18px rgba(20, 32, 43, 0.35);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.hide-md { display: block; }
  .nav-links .btn { margin-top: 18px; border-bottom: 0; }
  .nav .btn-nav-mobile { display: inline-flex; }
  .nav-actions { display: flex; align-items: center; gap: 8px; }

  .hero-img { object-position: 34% 50%; }
  .hero .wrap { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .hero-live { text-align: left; order: -1; }
  .hero-live strong { justify-content: flex-start; }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  .hero-cta .btn { flex: 1 1 auto; }

  .split, .split.flip { grid-template-columns: minmax(0, 1fr); }
  .split.flip .photo { order: -1; }
  .ratio-wide { aspect-ratio: 16 / 9; }
  .ratio-tall { aspect-ratio: 4 / 3; }
  .menu-cols { grid-template-columns: minmax(0, 1fr); }
  .menu-cols .menu-group:nth-child(2) { margin-top: 30px; }
  .day-chapters { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
  .day-chapters a, .day-chapters a:first-child { border-right: 0; padding-left: 0; padding-right: 0; border-bottom: 1px solid var(--line); }
  .day-chapters a.span-all { grid-column: 1 / -1; }
  .services { grid-template-columns: minmax(0, 1fr); }
  .visit-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .tc-prices b { font-size: 2.2rem; }
  .ember h2 { max-width: none; }
  }
@media (min-width: 861px) {
  .nav-actions { display: contents; }
  .nav .btn-nav-mobile { display: none; }
}
@media (max-width: 420px) {
  .mark { font-size: 0.82rem; }
  .mark small { font-size: 0.76rem; }
  .btn { padding: 0 20px; }
}

/* small fixes */
@media (max-width: 860px) { .nav-links .btn { display: none; } }
.on-dark .btn-line, .ember .btn-line { color: #fff; }
.on-dark .btn-line:hover { background: rgba(255, 255, 255, 0.12); }

@media (max-width: 860px) {
  .axis { margin-top: 176px; }
  .mark--open { --h: 46px; }
  .mark--bistrot { --h: 92px; }
  .mark--sunset { --h: 138px; }
}
.dish h4 { text-wrap: pretty; }

/* ---------- sticky day rail ---------- */
.rail { position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 45; height: 44px; background: var(--white); border-bottom: 1px solid var(--line); color: var(--ink); transform: translateY(-110%); visibility: hidden; transition: transform 0.45s var(--ease), visibility 0.45s; }
.rail.show { transform: none; visibility: visible; }
.rail .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.rail-stops { display: flex; align-items: center; gap: clamp(14px, 3vw, 32px); font-size: 0.9rem; font-weight: 500; }
.rail-stops a { text-decoration: none; position: relative; padding: 12px 0; white-space: nowrap; }
.rail-stops a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 2px; background: var(--sea); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.rail-stops a[aria-current="true"] { font-weight: 600; color: var(--sea-deep); }
.rail-stops a[aria-current="true"]::after { transform: none; }
.rail-sun { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: #8a3a1c; white-space: nowrap; }
@media (max-width: 640px) { .rail-sun { display: none; } .rail-stops { width: 100%; justify-content: space-between; font-size: 0.82rem; gap: 10px; } }

/* ---------- the day draws itself (one authored moment) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .axis .axis-open, .js .axis .axis-bistrot { transform-origin: left center; transform: scaleX(0); transition: transform 1.6s var(--ease) 0.2s; }
  .js .axis.in .axis-open { transform: none; }
  .js .axis.in .axis-bistrot { transform: none; transition-delay: 0.9s; }
  .js .axis .mark, .js .axis .axis-now { opacity: 0; transition: opacity 0.9s var(--ease); }
  .js .axis.in .mark--open { opacity: 1; transition-delay: 0.5s; }
  .js .axis.in .mark--bistrot { opacity: 1; transition-delay: 1.3s; }
  .js .axis.in .mark--sunset { opacity: 1; transition-delay: 1.9s; }
  .js .axis.in .axis-now { opacity: 1; transition-delay: 2.3s; }
}
.proof { margin-top: 14px; max-width: 32rem; color: #cdd6f4; }

.axis-now.now--left span { left: auto; right: 6px; }
