/* Hallmark · macrostructure: Photographic · genre: editorial-hospitality
 * theme: custom (ecru paper / pine bands / olive ~110) · display: Cormorant Garamond · body: Source Serif 4
 * enrichment: engraved-olive parallax + full-bleed photo folds · nav: fixed-transparent→cream · footer: statement-grid
 * pre-emit critique: P5 H5 E5 S5 R4 V5
 * Full-bleed photo folds alternate with narrow paper text bands; the image edge is the divider.
 */

/* ============================================================ base */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--color-accent); text-decoration: none; }
:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; border-radius: 2px; }
/* dark surfaces need a bright ring; the paper card inside the pine band restores the deep one */
.hero :focus-visible, .fold :focus-visible, .band--pine :focus-visible, .foot :focus-visible,
.nav:not(.is-scrolled) :focus-visible { outline-color: var(--color-pine-accent); }
.reserve__card :focus-visible { outline-color: var(--color-focus); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.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;
}
[hidden] { display: none !important; }

.skip-link {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -120%);
  z-index: var(--z-toast);
  background: var(--color-ink); color: var(--color-paper);
  padding: 0.6rem 1.1rem; border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: var(--text-sm); letter-spacing: 0.02em;
  transition: transform var(--dur-short) var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--color-paper); }

/* ============================================================ typography helpers */
.caps {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  line-height: 1.5;
}
.kicker { color: var(--color-accent); margin-bottom: var(--space-sm); }
.sprig-rule { width: 7.5rem; height: auto; color: var(--color-accent); margin: var(--space-xs) 0 var(--space-lg); }
.lede {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.28;
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
}
.body {
  max-width: var(--measure);
  color: var(--color-ink-2);
  margin-bottom: var(--space-md);
}
.body--drop::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4em;
  line-height: 0.72;
  padding: 0.08em 0.12em 0 0;
  color: var(--color-accent);
}

/* ============================================================ bands */
.band { position: relative; }
.band--paper { background: var(--color-paper); color: var(--color-ink); }
/* tone-on-tone engraved-olive watermark across the paper sections */
.band--paper::before, .find__body::before {
  content: ""; position: absolute; inset: 0;
  background: url("/assets/art/olive-pattern.svg?v=1") repeat;
  background-size: clamp(36rem, 58vw, 54rem);
  pointer-events: none;
}
.find__body { position: relative; }
.find__body > * { position: relative; }
.band--pine { background: var(--color-pine); color: var(--color-pine-ink); }
.band__inner {
  padding-inline: var(--page-gutter);
  padding-block: clamp(3.5rem, 9vw, 7rem);
  margin-inline: auto;
  max-width: 78rem;
  position: relative;
  z-index: var(--z-base);
}
.band__inner.measure { max-width: calc(var(--measure) + var(--page-gutter) * 2); }

/* engraved-branch parallax decoration */
.branch-deco {
  position: absolute;
  top: 50%;
  width: clamp(20rem, 34vw, 34rem);
  height: auto;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.branch-deco--right { right: -8rem; color: var(--color-accent); opacity: 0.09; }
.branch-deco--left { left: -9rem; color: var(--color-accent); opacity: 0.09; transform: scaleX(-1); }

/* ============================================================ buttons + links */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  background: var(--color-accent);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: background var(--dur-short) var(--ease-out),
              color var(--dur-short) var(--ease-out),
              transform var(--dur-micro) var(--ease-out);
}
.btn:hover, .btn.is-hover { background: var(--color-ink); color: var(--color-paper); }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[data-state="loading"] { opacity: 0.6; cursor: not-allowed; }
.btn--block { width: 100%; }
.btn--light { background: var(--color-pine-ink); color: var(--color-pine); }
.btn--light:hover { background: var(--color-paper); color: var(--color-accent); }

.link-arrow, .link-down {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  font-weight: 500; color: var(--color-accent);
}
.link-arrow span, .link-down span {
  transition: transform var(--dur-short) var(--ease-out);
}
.link-arrow:hover span { transform: translateX(4px); }
.link-down:hover span { transform: translateY(3px); }

/* ============================================================ nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background var(--dur-long) var(--ease-out),
              box-shadow var(--dur-long) var(--ease-out),
              border-color var(--dur-long) var(--ease-out);
  border-bottom: 1px solid transparent;
  color: var(--color-pine-ink);
}
.nav__inner {
  display: flex; align-items: center; gap: var(--space-lg);
  padding: 0.9rem var(--page-gutter);
  max-width: 84rem; margin-inline: auto;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: inherit;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-right: auto;
}
.wordmark:hover { color: inherit; }
.wordmark__badge {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--color-pine) 20%, transparent),
              0 2px 10px color-mix(in oklab, var(--color-pine) 25%, transparent);
}
.nav__links { display: none; gap: var(--space-lg); }
.nav__links a {
  color: inherit; font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.02em; padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-short) var(--ease-out), opacity var(--dur-short) var(--ease-out);
}
.nav__links a:hover { color: inherit; border-color: currentColor; }
.nav__cta { display: none; min-height: 2.75rem; padding: 0.5rem 1.15rem; font-size: var(--text-sm); }

.nav.is-scrolled {
  background: color-mix(in oklab, var(--color-paper) 92%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--color-rule);
  color: var(--color-ink);
}
.nav.is-scrolled .nav__cta { background: var(--color-accent); color: var(--color-paper); }
.nav.is-scrolled .nav__cta:hover { background: var(--color-accent-2); color: var(--color-ink); }

.nav__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; margin-right: -0.5rem;
  background: none; border: 0; cursor: pointer; color: inherit;
}
.nav__burger span { display: block; height: 1.6px; width: 22px; margin-inline: auto; background: currentColor; border-radius: 2px; }

/* ============================================================ drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
}
.drawer__panel {
  position: absolute; inset: 0;
  background: var(--color-paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--page-gutter);
  opacity: 0; transform: translateY(-8px);
  transition: opacity var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}
.drawer.is-open .drawer__panel { opacity: 1; transform: none; }
.drawer__close {
  position: absolute; top: 0.9rem; right: var(--page-gutter);
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; color: var(--color-ink);
}
.drawer__links { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer__links a {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 9vw, 3rem);
  font-weight: 500; color: var(--color-ink);
  line-height: 1.15;
  opacity: 0; transform: translateY(10px);
}
.drawer__links a:last-child { color: var(--color-accent); font-style: italic; }
.drawer.is-open .drawer__links a {
  animation: drawer-in var(--dur-long) var(--ease-out) forwards;
  animation-delay: calc(80ms + var(--i) * 55ms);
}
@keyframes drawer-in { to { opacity: 1; transform: none; } }
.drawer__foot {
  margin-top: var(--space-2xl);
  color: var(--color-muted); font-size: var(--text-sm); line-height: 1.7;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.drawer__foot a { color: var(--color-accent); }

/* ============================================================ hero */
.hero {
  position: relative;
  height: 100svh; min-height: 34rem; max-height: 62rem;
  overflow: clip;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--color-pine-ink);
}
.hero__figure { position: absolute; inset: 0; margin: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1100ms var(--ease-in-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide picture { height: 100%; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.js .hero__slide.is-active .hero__img { animation: ken-burns 8s var(--ease-out) both; }
@keyframes ken-burns { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero__dots {
  position: absolute; right: var(--page-gutter); bottom: 1.1rem; z-index: 2;
  display: flex;
}
.hero__dot {
  width: 2rem; height: 2.75rem;
  background: none; border: 0; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-pine-ink);
  opacity: 0.45;
  transition: opacity var(--dur-short) var(--ease-out), transform var(--dur-short) var(--ease-out);
}
.hero__dot:hover::before { opacity: 0.8; }
.hero__dot[aria-pressed="true"]::before { opacity: 1; transform: scale(1.5); }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    var(--overlay-pine-strong) 0%,
    color-mix(in oklab, var(--overlay-pine-strong) 55%, transparent) 42%,
    transparent 78%);
}
.hero__stack {
  position: relative; z-index: 2;
  padding: var(--page-gutter);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  max-width: 46rem;
}
.hero__kicker { color: var(--color-pine-ink-2); margin-bottom: var(--space-md); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.25rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px color-mix(in oklab, var(--color-pine) 55%, transparent);
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--color-pine-ink); }
.hero__lede {
  margin-top: var(--space-md);
  max-width: 34rem;
  color: var(--color-pine-ink-2);
  font-size: var(--text-md);
  line-height: 1.5;
}
.hero__cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.hero__cta .link-down { color: var(--color-pine-ink); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--color-pine-ink-2);
  transition: opacity var(--dur-long) var(--ease-out);
}
.hero__scroll .caps { font-size: 0.7rem; letter-spacing: 0.24em; }
.hero__scroll-line {
  width: 1px; height: 2.4rem; background: currentColor;
  transform-origin: top; animation: scroll-pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
.hero__scroll.is-hidden { opacity: 0; pointer-events: none; }

/* ============================================================ photo folds */
.fold {
  position: relative; margin: 0;
  height: clamp(24rem, 72vh, 46rem);
  overflow: clip;
}
.fold--cta { height: clamp(26rem, 66vh, 44rem); }
.fold > picture, .fold > picture img { width: 100%; height: 100%; }
.fold img { object-fit: cover; }
.fold__cap {
  position: absolute; left: 0; bottom: 0;
  padding: var(--page-gutter);
  padding-bottom: clamp(1.25rem, 4vh, 2.5rem);
  color: var(--color-pine-ink);
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-md);
  text-shadow: 0 1px 16px color-mix(in oklab, var(--color-pine) 70%, transparent);
  max-width: 34rem;
  z-index: 1;
}
.fold::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top,
    var(--overlay-pine-strong) 0%,
    color-mix(in oklab, var(--overlay-pine-strong) 40%, transparent) 26%,
    transparent 50%);
}
.fold--cta { display: grid; place-items: center; text-align: center; }
/* the photo becomes a backdrop so the centered caption can live inside the fold */
.fold--cta > picture { position: absolute; inset: 0; }
.fold__cap--center {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-lg);
  padding: var(--page-gutter); max-width: 40rem;
}
.fold__cap--center span {
  font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.15;
}

/* ============================================================ Band A · invitation */
.invite { overflow: clip; }
.invite .lede { font-size: var(--text-2xl); line-height: 1.22; }

/* ============================================================ Band B · menu */
.menu__head { text-align: center; margin-bottom: var(--space-2xl); }
.menu__head .sprig-rule { margin-inline: auto; }
.menu__intro {
  max-width: 40rem; margin-inline: auto;
  color: var(--color-muted); font-size: var(--text-md);
}
.menu__jump {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  justify-content: center;
  padding-block: var(--space-md);
  margin-bottom: var(--space-2xl);
  border-block: 1px solid var(--color-rule);
}
.menu__jump a {
  color: var(--color-muted); font-size: var(--text-sm);
  letter-spacing: 0.03em; padding-block: 0.7rem 0.6rem;
  border-bottom: 1.5px solid transparent;
  transition: color var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out);
}
.menu__jump a:hover, .menu__jump a.is-active { color: var(--color-accent); border-color: var(--color-accent); }

.course { margin-bottom: var(--space-2xl); }
.course__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500; font-style: italic;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-rule);
}
.dishes { display: flex; flex-direction: column; }
.dish {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: baseline;
  column-gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  margin-inline: -0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-short) var(--ease-out);
}
.dish:hover { background: var(--color-paper-2); }
.dish__name {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500; line-height: 1.2;
  color: var(--color-ink);
}
.dish__lead {
  grid-column: 2; align-self: flex-end;
  height: 1px; margin-bottom: 0.32em;
  border-bottom: 1.5px dotted var(--color-rule);
}
.dish__price {
  grid-column: 3;
  font-family: var(--font-display);
  font-size: var(--text-md); font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}
.dish__desc {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: var(--text-sm); line-height: 1.5;
  max-width: 42rem;
}
/* Greek name — static second line on touch */
.dish__swap { display: block; }
.dish__latin { display: block; }
.dish__greek { display: block; font-size: 0.78em; color: var(--color-muted); font-style: italic; letter-spacing: 0.01em; }

.menu__close { text-align: center; margin-top: var(--space-2xl); }
.menu__close p { max-width: 34rem; margin: 0 auto var(--space-lg); color: var(--color-muted); }

/* long categories flow into two columns on wide screens */
@media (min-width: 900px) {
  .dishes--cols { display: block; columns: 2; column-gap: var(--space-2xl); }
  .dishes--cols .dish { break-inside: avoid; }
}

/* the bar — compact rows, grouped */
.bar { display: grid; gap: var(--space-xl); }
@media (min-width: 900px) {
  .bar { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-2xl); }
}
.bar__title {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: var(--text-md); color: var(--color-ink);
  margin: 0 0 var(--space-xs); padding-bottom: var(--space-2xs);
  border-bottom: 1px solid var(--color-rule);
}
.dishes--bar .dish { padding-block: 0.3rem; }
.dishes--bar .dish__name { font-family: var(--font-body); font-size: var(--text-base); font-weight: 500; }
.dishes--bar .dish__price { font-size: var(--text-base); }

/* ============================================================ Band C · story */
.story { overflow: clip; }
.story__grid { display: grid; gap: var(--space-2xl); align-items: center; }
.story__figure { position: relative; margin: 0; max-width: 26rem; }
.story__figure img {
  width: 100%; height: auto;
  border: 2px solid var(--color-rule);
  outline: 1px solid var(--color-rule);
  outline-offset: 8px;
}
.story__badge {
  position: absolute; right: -1rem; bottom: -1.5rem;
  width: clamp(6rem, 16vw, 9rem);
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--color-paper);
  box-shadow: 0 8px 28px color-mix(in oklab, var(--color-ink) 22%, transparent);
}
.story__badge img { width: 100%; height: 100%; object-fit: cover; }
.story__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 500; line-height: 1.08;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
}
.story__prose .sprig-rule { margin-top: var(--space-md); margin-bottom: 0; }

/* ============================================================ Band C2 · evenings gallery */
.evenings { overflow: clip; padding-bottom: clamp(2.5rem, 7vw, 5rem); }
.evenings__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.evenings__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 500; line-height: 1.05;
  color: var(--color-ink);
}
.evenings__nav { display: none; gap: 0.6rem; flex-shrink: 0; }
.gallery__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-paper); color: var(--color-ink);
  border: 1px solid var(--color-rule); cursor: pointer;
  transition: background var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out), opacity var(--dur-short) var(--ease-out);
}
.gallery__arrow:hover { background: var(--color-accent); color: var(--color-paper); border-color: var(--color-accent); }
.gallery__arrow:disabled { opacity: 0.32; cursor: default; }
.gallery__arrow:disabled:hover { background: var(--color-paper); color: var(--color-ink); border-color: var(--color-rule); }

.gallery {
  position: relative; z-index: var(--z-base);
  display: flex; gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--page-gutter);
  padding-bottom: var(--space-md);
  scroll-padding-inline: var(--page-gutter);
}
.gallery::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .gallery {
    -webkit-mask-image: linear-gradient(to right, transparent, var(--mask-opaque) 4%, var(--mask-opaque) 96%, transparent);
    mask-image: linear-gradient(to right, transparent, var(--mask-opaque) 4%, var(--mask-opaque) 96%, transparent);
  }
}
.gallery__item { flex: 0 0 auto; scroll-snap-align: start; width: clamp(16rem, 26vw, 24rem); }
.gallery__item figure { margin: 0; }
.gallery__item picture, .gallery__item img { width: 100%; }
.gallery__item img {
  aspect-ratio: 4 / 5; height: auto; object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--dur-long) var(--ease-out);
}
.gallery__item figcaption {
  margin-top: var(--space-sm);
  font-family: var(--font-display); font-style: italic;
  font-size: var(--text-md); color: var(--color-muted);
  transition: color var(--dur-short) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery__item figure:hover img { transform: translateY(-4px); }
  .gallery__item figure:hover figcaption { color: var(--color-ink); }
}

/* ============================================================ Band D · reserve (pine) */
.reserve__grid { display: grid; gap: var(--space-2xl); }
.reserve__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl); font-weight: 500; line-height: 1.02;
  color: var(--color-pine-ink);
  margin-bottom: var(--space-xl);
}
.reserve .kicker { color: var(--color-pine-accent); }
.practicals { display: flex; flex-direction: column; gap: var(--space-lg); margin: 0; }
.practicals div { display: grid; gap: 0.2rem; }
.practicals dt {
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--color-pine-accent); font-weight: 500;
}
.practicals dd { margin: 0; color: var(--color-pine-ink-2); font-size: var(--text-md); line-height: 1.5; }
.practicals a { color: var(--color-pine-ink); border-bottom: 1px solid var(--color-pine-rule); }
.practicals a:hover { color: var(--color-pine-accent); border-color: var(--color-pine-accent); }
.status { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.35rem; font-size: var(--text-sm); color: var(--color-pine-ink-2); }
.status__dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--color-pine-ink-2); flex-shrink: 0; }
.status.is-open .status__dot { background: var(--color-open); box-shadow: 0 0 0 4px color-mix(in oklab, var(--color-open) 24%, transparent); }
.status.is-open { color: var(--color-pine-ink); }

/* form card — an island of paper on the pine band */
.reserve__card {
  background: var(--color-paper); color: var(--color-ink);
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 24px 60px color-mix(in oklab, var(--color-pine) 55%, transparent);
}
.form-head h3, .form-result h3 {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500;
  color: var(--color-ink);
}
.form-head p { margin-top: 0.35rem; color: var(--color-muted); }
.form-head { margin-bottom: var(--space-lg); }

/* two-step flow — .is-stepped is added by main.js itself, so if that file ever
   fails to load the form degrades to a stacked, fully native Netlify form */
fieldset.step { border: 0; padding: 0; margin: 0; min-width: 0; }
.step:focus { outline: none; }
/* each step must fit one screen — tighter rhythm than the long single form had */
.step .field { margin-bottom: var(--space-md); }
.step textarea { min-height: 3.2rem; }
.step .chips { gap: 0.4rem; }
@media (pointer: fine) {
  /* compact chips only for mouse users — touch keeps the 44px target */
  .step .chip { min-height: 2.4rem; padding: 0.3rem 0.7rem; }
}
.reserve__card .form-head { margin-bottom: var(--space-md); }
.steps, .step__summary, [data-step-next], .step-back { display: none; }
.is-stepped .steps {
  display: flex; gap: var(--space-lg); align-items: baseline;
  list-style: none; padding: 0 0 var(--space-sm); margin: 0 0 var(--space-md);
  border-bottom: 1px solid var(--color-rule);
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--color-muted);
  counter-reset: step;
}
.is-stepped .steps li { display: inline-flex; align-items: center; gap: 0.5rem; counter-increment: step; }
.is-stepped .steps li::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  border: 1px solid var(--color-rule); color: var(--color-muted);
  font-size: 0.72rem; letter-spacing: 0;
}
.is-stepped .steps li.is-current { color: var(--color-ink); }
.is-stepped .steps li.is-current::before, .is-stepped .steps li.is-done::before {
  background: var(--color-accent); border-color: var(--color-accent); color: var(--color-paper);
}
.is-stepped .step:not(.is-active) { display: none; }
.is-stepped [data-step-next] { display: inline-flex; }
.is-stepped .step__summary:not([hidden]) {
  display: block;
  background: var(--color-paper-2); border: 1px solid var(--color-rule);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem; margin-bottom: var(--space-lg);
  font-family: var(--font-display); font-size: var(--text-md); color: var(--color-ink);
  font-variant-numeric: tabular-nums;
}
.is-stepped .step-back {
  display: block; width: 100%; margin-top: var(--space-sm);
  background: none; border: 0; cursor: pointer;
  color: var(--color-muted); font-size: var(--text-sm); font-family: var(--font-body);
  padding: 0.5rem; text-align: center;
  transition: color var(--dur-short) var(--ease-out);
}
.is-stepped .step-back:hover { color: var(--color-accent); }

.field { margin-bottom: var(--space-lg); }
.field label, .field__label {
  display: block; margin-bottom: 0.45rem;
  font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.01em;
  color: var(--color-ink-2);
}
.field .opt { color: var(--color-muted); font-weight: 400; }
input, select, textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 16px;
  color: var(--color-ink);
  background: var(--color-paper-2);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.85rem;
  transition: border-color var(--dur-short) var(--ease-out), box-shadow var(--dur-short) var(--ease-out);
}
textarea { resize: vertical; min-height: 5.5rem; line-height: 1.5; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-focus);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-focus) 22%, transparent);
}
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--color-error); }
input[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-error) 22%, transparent); }
.help {
  margin-top: 0.35rem; font-size: var(--text-sm); color: var(--color-muted); min-height: 1.2em; line-height: 1.4;
}
.help.is-error { color: var(--color-error); }
.help--muted { color: var(--color-muted); font-size: var(--text-xs); }
[data-party-live] { color: var(--color-ink-2); }

/* select fallback (visually hidden but focusable) once chips are live */
.select-fallback.is-enhanced {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* time chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  min-height: 2.75rem; padding: 0.4rem 0.85rem;
  width: auto;
  background: var(--color-paper-2); color: var(--color-ink-2);
  border: 1px solid var(--color-rule); border-radius: 999px;
  font-size: var(--text-sm); font-variant-numeric: tabular-nums; cursor: pointer;
  transition: background var(--dur-short) var(--ease-out), color var(--dur-short) var(--ease-out), border-color var(--dur-short) var(--ease-out);
}
.chip:hover:not(:disabled) { border-color: var(--color-accent); color: var(--color-accent); }
.chip[aria-pressed="true"] { background: var(--color-accent); color: var(--color-paper); border-color: var(--color-accent); }
.chip:disabled { opacity: 0.4; cursor: not-allowed; }

/* stepper */
.stepper { display: inline-grid; grid-template-columns: 3rem 4.5rem 3rem; align-items: stretch; }
.stepper button {
  width: 3rem; min-height: 3rem;
  background: var(--color-paper-2); color: var(--color-ink);
  border: 1px solid var(--color-rule); cursor: pointer;
  font-size: var(--text-lg); line-height: 1;
  transition: background var(--dur-short) var(--ease-out);
}
.stepper button:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stepper button:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stepper button:hover:not(:disabled) { background: var(--color-accent); color: var(--color-paper); border-color: var(--color-accent); }
.stepper button:disabled { opacity: 0.4; cursor: not-allowed; }
.stepper input {
  width: 4.5rem; text-align: center; border-radius: 0;
  border-inline: 0; font-variant-numeric: tabular-nums; font-size: var(--text-md);
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* calendar */
.calendar {
  margin-top: 0.6rem;
  background: var(--color-paper); border: 1px solid var(--color-rule);
  border-radius: var(--radius-md); padding: 0.75rem;
}
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.cal__month { font-family: var(--font-display); font-size: var(--text-md); font-weight: 600; color: var(--color-ink); }
.cal__nav {
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-paper-2); border: 1px solid var(--color-rule); color: var(--color-ink); cursor: pointer;
  font-size: var(--text-md); line-height: 1;
}
.cal__nav:hover:not(:disabled) { background: var(--color-accent); color: var(--color-paper); border-color: var(--color-accent); }
.cal__nav:disabled { opacity: 0.35; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal__dow { text-align: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); padding-bottom: 0.3rem; }
.cal__day {
  aspect-ratio: 1; width: 100%; border: 0; background: none; cursor: pointer;
  border-radius: var(--radius-sm); font-size: var(--text-sm); color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  transition: background var(--dur-micro) var(--ease-out), color var(--dur-micro) var(--ease-out);
}
.cal__day:hover:not(:disabled):not([aria-disabled="true"]) { background: var(--color-paper-2); }
.cal__day[aria-pressed="true"] { background: var(--color-accent); color: var(--color-paper); }
.cal__day:disabled, .cal__day[aria-disabled="true"] { opacity: 0.3; cursor: not-allowed; }
.cal__spacer { aspect-ratio: 1; }
.cal__note { margin-top: 0.5rem; font-size: var(--text-xs); color: var(--color-muted); text-align: center; }
input[data-date-input].is-enhanced { cursor: pointer; caret-color: transparent; }

.form-error {
  padding: 0.7rem 0.85rem; margin-bottom: var(--space-md);
  background: color-mix(in oklab, var(--color-error) 12%, var(--color-paper));
  border: 1px solid var(--color-error); border-radius: var(--radius-md);
  color: var(--color-error); font-size: var(--text-sm);
}
.form-actions { margin-top: var(--space-md); }
.form-note { margin-top: 0.6rem; font-size: var(--text-sm); color: var(--color-muted); text-align: center; }
.form-result p { margin-top: 0.5rem; color: var(--color-ink-2); }
.form-result a { color: var(--color-accent); }

/* ============================================================ Fold 5 · find us */
.find { background: var(--color-paper); }
.find__figure { position: relative; margin: 0; height: clamp(20rem, 50vh, 34rem); overflow: clip; }
.find__figure picture, .find__figure img { width: 100%; height: 100%; }
.find__figure img { object-fit: cover; }
.find__figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, var(--overlay-pine-strong), transparent 45%);
}
.find__figure .fold__cap { z-index: 1; }
.find__body { padding: clamp(2.5rem, 7vw, 5rem) var(--page-gutter); max-width: 40rem; }
.find__title {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500; line-height: 1.08;
  color: var(--color-ink); margin-bottom: var(--space-lg);
}
.find__address {
  font-family: var(--font-display); font-style: normal; font-size: var(--text-lg);
  color: var(--color-ink); line-height: 1.35; margin-bottom: var(--space-lg);
}
.find__cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-lg); margin-top: var(--space-lg); }
.find__crete { width: clamp(11rem, 22vw, 15rem); height: auto; color: var(--color-accent); margin-bottom: var(--space-md); }

/* ============================================================ footer (pine) */
.foot { background: var(--color-pine); color: var(--color-pine-ink); }
.foot__inner {
  max-width: 78rem; margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.5rem) var(--page-gutter) var(--space-2xl);
  display: grid; gap: var(--space-2xl);
}
.foot__wordmark {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 11vw, 6rem); line-height: 0.95;
  letter-spacing: -0.01em; color: var(--color-pine-ink);
}
.foot__sprig { width: 9rem; height: auto; color: var(--color-pine-accent); margin-top: var(--space-md); }
.foot__cols { display: grid; gap: var(--space-xl); }
.foot__col h2 {
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--color-pine-accent); font-weight: 500; margin-bottom: var(--space-sm);
}
.foot__col p { color: var(--color-pine-ink-2); line-height: 1.6; margin-bottom: 0.35rem; }
.foot__col a { color: var(--color-pine-ink); }
.foot__col a:hover { color: var(--color-pine-accent); }
.foot__base {
  max-width: 78rem; margin-inline: auto;
  padding: var(--space-lg) var(--page-gutter);
  border-top: 1px solid var(--color-pine-rule);
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); justify-content: space-between;
  font-size: var(--text-sm); color: var(--color-pine-ink-2);
}
.foot__signoff { font-family: var(--font-display); font-style: italic; color: var(--color-pine-accent); }

/* ============================================================ reveal / motion */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }
/* sprig dividers draw in from the left instead of sliding up */
.js .reveal.reveal--draw { transform: scaleX(0); transform-origin: left center; }
/* gallery cards stagger */
.gallery__item.reveal:nth-child(2) { --reveal-delay: 90ms; }
.gallery__item.reveal:nth-child(3) { --reveal-delay: 180ms; }
/* stagger menu rows within a category, capped */
.dish.reveal:nth-child(1) { --reveal-delay: 0ms; }
.dish.reveal:nth-child(2) { --reveal-delay: 40ms; }
.dish.reveal:nth-child(3) { --reveal-delay: 80ms; }
.dish.reveal:nth-child(4) { --reveal-delay: 120ms; }
.dish.reveal:nth-child(5) { --reveal-delay: 160ms; }
.dish.reveal:nth-child(6) { --reveal-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .hero__slide.is-active .hero__img { animation: none !important; }
  .hero__slide { transition: none; }
  .hero__scroll-line { animation: none; }
  .drawer.is-open .drawer__links a { animation: none; opacity: 1; transform: none; }
  .branch-deco, [data-fold] img[data-depth] { transform: none !important; }
  [data-fold] img[data-depth] { height: 100% !important; top: 0 !important; }
}

/* ============================================================ responsive */
@media (min-width: 640px) {
  .story__figure { max-width: 22rem; }
}
@media (min-width: 768px) {
  .foot__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); align-items: end; }
}
@media (min-width: 769px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .drawer { display: none; }
}
@media (min-width: 900px) {
  .story__grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
  .find { display: grid; grid-template-columns: 55% minmax(0, 1fr); align-items: stretch; }
  .find__figure { height: auto; min-height: 32rem; }
  .find__body { align-self: center; }
}
@media (min-width: 1024px) {
  .band__inner { padding-block: clamp(5rem, 8vw, 7.5rem); }
  .menu__jump { position: sticky; top: 4.5rem; background: color-mix(in oklab, var(--color-paper) 92%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); z-index: 10; }
  /* clear the sticky jump bar too — scroll-padding-top only covers the 5.5rem header */
  .course { display: grid; grid-template-columns: 12rem minmax(0, 1fr); column-gap: var(--space-2xl); scroll-margin-top: 4.75rem; }
  .course__title { grid-column: 1; border-bottom: 0; padding-bottom: 0; margin-bottom: 0; text-align: right; }
  .course > .dishes, .course > .bar { grid-column: 2; }
  .evenings__nav { display: flex; }
  .reserve__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-4xl); align-items: start; }
  .reserve__card { position: sticky; top: 5.5rem; }
}
@media (min-width: 1024px) and (pointer: fine) {
  /* oversize + recenter so the ±6% depth translate never exposes paper (find__figure included) */
  .js [data-fold] img[data-depth] { height: 114%; position: relative; top: -7%; }
}

/* touch-target floor — the booking flow is thumb-driven */
@media (pointer: coarse) {
  input:not([type="checkbox"]):not([type="radio"]), select { min-height: 3rem; }
  .chip { min-height: 3rem; padding-inline: 1rem; }
  .cal__nav { width: 2.75rem; height: 2.75rem; }
  .cal__day { aspect-ratio: auto; min-height: 2.75rem; }
  .nav__cta, .stepper button { min-height: 3rem; }
}

/* hover crossfade for Greek names — fine pointers only */
@media (hover: hover) and (pointer: fine) {
  .dish__swap { display: inline-grid; }
  .dish__latin, .dish__greek { grid-area: 1 / 1; transition: opacity var(--dur-short) var(--ease-out); }
  .dish__greek { opacity: 0; font-size: 1em; font-style: italic; color: var(--color-accent); }
  .dish:hover .dish__latin { opacity: 0; }
  .dish:hover .dish__greek { opacity: 1; }
}
