/* ==========================================================================
   Kri Kri Taverna — Ormos, Agios Nikolaos
   Editorial minimalism + warm Cretan palette. No gradients. SNOT build.
   ========================================================================== */

:root {
  /* Palette — drawn from the Kri Kri logo (charcoal circle, sage ring) */
  --bone:      #F5F1E8;   /* warm canvas */
  --paper:     #FBF9F4;   /* lighter surface */
  --ink:       #2B2E2D;   /* warm near-black */
  --ink-soft:  #5C605D;   /* muted body */
  --sage:      #93A29B;   /* brand sage-grey */
  --sage-deep: #6C7A74;
  --blue:      #4F8597;   /* logo sea-blue, deepened so it actually reads — scattered highlights */
  --charcoal:  #34383A;   /* logo dark — footer, hero overlay */
  --charcoal-2:#2A2D2E;
  --terracotta:#B4623E;   /* single warm spot accent (Cretan earth) */
  --line:      rgba(43, 46, 45, 0.12);
  --line-soft: rgba(43, 46, 45, 0.07);
  --white:     #ffffff;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Greek renders in fonts with real Greek glyphs, matched to the Latin pair, so
   the page barely shifts on the EN/EL toggle. Cormorant + Hanken Grotesk carry
   no Greek, so Greek text would otherwise fall back to Georgia/Arial. */
html[lang="el"] {
  --font-display: "EB Garamond", "Cormorant", Georgia, serif;
  --font-body: "Commissioner", "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
}
/* EB Garamond + Commissioner render visually larger than Cormorant/Hanken at the same
   size, so scale Greek down to sit at the same visual size as the English. */
html[lang="el"] body { font-size: clamp(15px, 1vw, 17px); }
html[lang="el"] .display { font-size: clamp(2.3rem, 5.6vw, 4.85rem); }
html[lang="el"] h2 { font-size: clamp(1.65rem, 3.7vw, 3rem); }
html[lang="el"] h3 { font-size: clamp(1.1rem, 1.7vw, 1.45rem); }
html[lang="el"] .hero__sub { font-size: 1rem; }
html[lang="el"] .eyebrow { letter-spacing: 0.18em; }

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

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 18px);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.005em;
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.8rem, 6.8vw, 5.8rem);
  font-weight: 600;
}
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lede {
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 40ch;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(44px, 5vw, 82px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-solid { background: var(--ink); color: var(--bone); }
.btn-solid:hover { background: var(--charcoal); }
.btn-outline { border: 1px solid currentColor; }
.btn-light { color: var(--white); }
.btn-light.btn-solid { background: var(--white); color: var(--ink); }
.btn-light.btn-solid:hover { background: var(--bone); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 241, 232, 0.86);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.nav__drawer-brand { display: none; }
.nav__brand img { width: 44px; height: 44px; border-radius: 50%; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.nav.scrolled .nav__brand img { width: 38px; height: 38px; }
.nav__brand .wordmark {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav__brand .wordmark { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  position: relative;
  padding-block: 4px;
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav__links a:not(.btn) { color: var(--ink); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav.scrolled .nav__links .btn { background: var(--ink); color: var(--bone); }
.nav__links .btn { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.5); color: var(--white); padding: 0.6em 1.2em; }

.nav__right { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); z-index: 2; }

/* Language toggle */
.nav__lang { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }
.nav__lang button { color: rgba(255,255,255,0.6); transition: color 0.3s var(--ease); padding: 2px 1px; }
.nav__lang button.active { color: var(--white); }
.nav__lang .sep { color: rgba(255,255,255,0.4); }
.nav.scrolled .nav__lang button { color: var(--ink-soft); }
.nav.scrolled .nav__lang button.active { color: var(--ink); }
.nav.scrolled .nav__lang .sep { color: var(--line); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; z-index: 2; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--ink); }
.nav__links.open ~ .nav__toggle span { background: var(--ink); }
.nav__links.open ~ .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__links.open ~ .nav__toggle span:nth-child(2) { opacity: 0; }
.nav__links.open ~ .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img {
  position: absolute; left: 0; top: -15%;
  width: 100%; height: 130%;
  object-fit: cover;
  object-position: center 45%;
  will-change: transform;
}
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(28, 31, 30, 0.26);   /* very faint flat wash, no gradient */
}
.hero__scrim { display: none; } /* uniform wash only — no gradient, no seam */
.hero__inner { position: relative; z-index: 2; width: 100%; padding-inline: var(--gutter); padding-bottom: clamp(34px, 4.5vh, 58px); }
.hero .eyebrow { color: rgba(255,255,255,0.94); text-shadow: 0 1px 16px rgba(0,0,0,0.7); }
.hero .eyebrow::before { background: rgba(255,255,255,0.7); }
.hero h1 { color: var(--white); max-width: 19ch; margin-top: 22px; text-shadow: 0 2px 26px rgba(0,0,0,0.62), 0 1px 4px rgba(0,0,0,0.4); }
.hero__sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: rgba(255,255,255,0.94);
  line-height: 1.6;
  text-shadow: 0 1px 18px rgba(0,0,0,0.62), 0 1px 4px rgba(0,0,0,0.4);
}
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.hero__scrollcue .line { width: 1px; height: 42px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.hero__scrollcue .line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--white); animation: scrollcue 2.1s var(--ease) infinite;
}
@keyframes scrollcue { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ==========================================================================
   Story
   ========================================================================== */
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.story__copy h2 { margin-top: 20px; max-width: 14ch; }
.story__copy p { margin-top: 22px; color: var(--ink-soft); max-width: 46ch; }
.story__copy .sign {
  margin-top: 28px; font-family: var(--font-display); font-style: italic;
  font-size: 1.35rem; color: var(--ink);
}
.story__media { position: relative; }
.story__media figure { margin: 0; }
.story__media-main { position: relative; }
.story__media-main img { border-radius: 6px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story__media-inset {
  position: absolute; left: 0; bottom: 0;
  width: 50%; z-index: 2;
}
.story__media-inset img {
  border-radius: 6px; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border: 7px solid var(--bone);
}
.story__media-tag {
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
  margin-top: 16px; text-align: right; position: relative; z-index: 1;
  font-size: 0.74rem; letter-spacing: 0.04em; color: var(--sage-deep);
}
.story__media-tag::before { content:""; width: 16px; height:1px; background: var(--blue); flex: none; }

.stats {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 30px 8px 4px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

/* ==========================================================================
   Pull quote
   ========================================================================== */
.quote { background: var(--charcoal); color: var(--bone); }
.quote .wrap { text-align: center; }
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(1.7rem, 4.2vw, 3.3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
}
.quote .mark { font-size: 3rem; color: var(--sage); line-height: 0; display: block; margin-bottom: 8px; font-family: var(--font-display); }
.quote cite { display: block; margin-top: 28px; font-family: var(--font-body); font-style: normal; font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }

/* ==========================================================================
   Kitchen / menu
   ========================================================================== */
.kitchen__head { text-align: center; max-width: 62ch; margin-inline: auto; }
.kitchen__head h2 { margin: 16px auto 0; max-width: 18ch; }
.kitchen__head p { color: var(--ink-soft); max-width: 50ch; margin: 18px auto 0; }

.menu-card {
  margin-top: clamp(44px, 6vw, 80px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(30px, 4.5vw, 70px);
  column-count: 2;
  column-gap: clamp(44px, 7vw, 108px);
  column-rule: 1px solid var(--line-soft);
}
/* categories flow down one column then the next, and never split across the gap */
.menu-cat { break-inside: avoid; margin: 0 0 clamp(46px, 5.2vw, 70px); }
.menu-cat:last-child { margin-bottom: 0; }
.menu-item.note-only { border-bottom: none; padding-top: 4px; }
.menu-item.note-only .note { font-style: italic; }
@media (max-width: 640px) { .menu-card { column-count: 1; column-rule: none; } }
.menu-cat__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 22px; }
.menu-cat__head h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.85rem); color: var(--ink); white-space: nowrap;
}
.menu-cat__head .rule { flex: 1; height: 1px; background: var(--blue); opacity: 0.5; }

.menu-item { padding: 9px 0; }
.menu-item .name {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 1.4vw, 1.34rem); color: var(--ink); letter-spacing: 0;
}
.menu-item .note { display: block; font-size: 0.86rem; color: var(--ink-soft); margin-top: 3px; line-height: 1.45; }

.menu-note {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: 30px clamp(24px, 4vw, 44px);
  background: var(--charcoal); color: var(--bone); border-radius: 10px;
}
.menu-note p { max-width: 40ch; }
.menu-note__lead { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.menu-note__sub { display: block; font-family: var(--font-body); font-size: 0.92rem; color: rgba(245,241,232,0.72); margin-top: 8px; }

.menu-flag {
  display: inline-block; margin-top: 20px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta);
  border: 1px solid var(--terracotta); border-radius: 100px; padding: 7px 16px;
}
.menu-note .btn-solid { background: var(--white); color: var(--ink); flex: none; }
.menu-note .btn-solid:hover { background: var(--bone); }

/* ==========================================================================
   Feature (fresh fish) — full-bleed split
   ========================================================================== */
/* Features are contained rounded panels at the standard content width, not full-bleed. */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: clamp(44px, 5.5vw, 84px) auto;
  border-radius: 14px;
  overflow: hidden;
  min-height: clamp(400px, 50vh, 520px);
}
.feature--reverse { grid-template-columns: 0.9fr 1.1fr; }
.feature__media { position: relative; overflow: hidden; }
.feature__media img { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.feature__copy { display: flex; align-items: center; background: var(--charcoal); color: var(--bone); padding: clamp(34px, 4.5vw, 62px); }
.feature__copy .inner { max-width: 40ch; }
.feature__copy h2 { color: var(--bone); margin-top: 18px; max-width: 15ch; }
.feature__copy p { margin-top: 22px; color: rgba(245,241,232,0.78); }
.feature__copy .feature-sub { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 1.9vw, 1.6rem); color: var(--bone); line-height: 1.3; margin-top: 14px; }
.feature__copy .eyebrow { color: var(--blue); }
.feature__copy .eyebrow::before { background: var(--blue); }
.feature--reverse .feature__media { order: 2; }
@media (max-width: 940px) { .feature { min-height: 0; } }

/* Playroom feature: crossfade carousel + manual dots */
.feature__media .fslide { opacity: 0; transition: opacity 0.9s var(--ease); z-index: 1; }
.feature__media .fslide.is-active { opacity: 1; z-index: 2; }
.feature__dots { position: absolute; z-index: 3; left: 0; right: 0; bottom: 16px; display: flex; gap: 9px; justify-content: center; }
.fdot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,0.55); box-shadow: 0 1px 3px rgba(0,0,0,0.4); cursor: pointer; transition: width 0.35s var(--ease), background 0.35s var(--ease); }
.fdot:hover { background: rgba(255,255,255,0.85); }
.fdot.is-active { width: 22px; border-radius: 4px; background: #fff; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px; }
.gallery__head h2 { max-width: 16ch; margin-top: 16px; }
.grid-masonry {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.grid-masonry figure {
  margin: 0; border-radius: 6px; overflow: hidden;
  position: relative; cursor: pointer; background: var(--paper);
  aspect-ratio: 4 / 5; will-change: opacity, transform;
}
.grid-masonry img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.grid-masonry figure:hover img { transform: scale(1.05); }
.grid-masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 18px 14px;
  background: rgba(28,31,30,0.0); color: #fff; font-size: 0.82rem; letter-spacing: 0.03em;
  opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease);
}
.grid-masonry figure:hover figcaption { opacity: 1; transform: translateY(0); background: rgba(28,31,30,0.45); }

/* Gallery marquee — continuous single-line scroll, opposite direction to reviews */
.gallery__marquee {
  margin-top: clamp(40px, 5vw, 64px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.gallery__track {
  display: flex; width: max-content; align-items: stretch;
  animation: gallery-marquee 90s linear infinite;
}
.gallery__marquee:hover .gallery__track,
.gallery__marquee:focus-within .gallery__track { animation-play-state: paused; }
@keyframes gallery-marquee {
  from { transform: translateX(-50%); }   /* moves rightward — opposite to the reviews row */
  to   { transform: translateX(0); }
}
.gallery__track figure {
  position: relative; flex: 0 0 auto; height: clamp(220px, 26vw, 320px);
  margin-right: 16px; border-radius: 6px; overflow: hidden; cursor: pointer; background: var(--paper);
}
.gallery__track picture { display: block; height: 100%; }
.gallery__track img { display: block; height: 100%; width: auto; transition: transform 0.7s var(--ease); }
.gallery__track figure:hover img { transform: scale(1.05); }
.gallery__track figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 18px 14px;
  background: rgba(28,31,30,0.0); color: #fff; font-size: 0.82rem; letter-spacing: 0.03em;
  opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease);
}
.gallery__track figure:hover figcaption { opacity: 1; transform: translateY(0); background: rgba(28,31,30,0.45); }
.gallery__track figure[aria-hidden="true"] { pointer-events: none; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { background: var(--paper); }
.reviews__head { text-align: center; }
.reviews__head h2 { max-width: 18ch; margin: 16px auto 0; }
.reviews__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 0.9rem; color: var(--ink-soft); }
.stars { color: var(--terracotta); letter-spacing: 2px; font-size: 1.05rem; }

.reviews__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1140px; margin-inline: auto;
}
.reviews__more { text-align: center; margin-top: clamp(28px, 3.5vw, 44px); }
.review {
  background: var(--bone); border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(26px, 2.6vw, 38px); display: flex; flex-direction: column;
}
.review .stars { font-size: 0.95rem; margin-bottom: 16px; }
.review p { font-size: 1rem; line-height: 1.62; color: var(--ink); }
.review .who { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 1rem;
}
.review .meta b { font-weight: 600; font-size: 0.92rem; }
.review .meta span { display: block; font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.review.feature-review { grid-row: span 1; }

/* Reviews marquee — continuous single-line horizontal scroll */
.reviews__marquee {
  margin-top: clamp(40px, 5vw, 64px);
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.reviews__marquee::-webkit-scrollbar { display: none; }
.reviews__marquee.dragging { cursor: grabbing; user-select: none; }
.reviews__track {
  display: flex; width: max-content; align-items: stretch;
}
.reviews__track .review {
  flex: 0 0 340px; width: 340px; margin-right: 20px;
}
.reviews__track .review p {
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
@keyframes review-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* one full set; cards are duplicated in JS */
}
@media (max-width: 600px) { .reviews__track .review { flex-basis: 290px; width: 290px; } }

/* Reviews on dark background */
.reviews.reviews--dark {
  background-color: var(--charcoal);
  background-image:
    linear-gradient(rgba(24, 26, 26, 0.85), rgba(24, 26, 26, 0.9)),
    url("images/reviews-bg.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: var(--bone);
}
.reviews--dark .reviews__head h2 { color: var(--bone); }
.reviews--dark .eyebrow { color: var(--blue); }
.reviews--dark .reviews__rating { color: rgba(245, 241, 232, 0.65); }
.reviews--dark .review {
  background: rgba(18, 20, 20, 0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-color: rgba(245, 241, 232, 0.18);
}
.reviews--dark .review p { color: var(--bone); }
.reviews--dark .review .meta b { color: var(--bone); }
.reviews--dark .review .meta span { color: rgba(245, 241, 232, 0.55); }

/* ==========================================================================
   Visit
   ========================================================================== */
.visit__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 84px); align-items: stretch; }
.visit h2 { max-width: 12ch; margin-top: 18px; }
.visit__lede { margin-top: 22px; color: var(--ink-soft); max-width: 42ch; }

.info-list { margin-top: 40px; display: grid; gap: 0; }
.info {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.info:last-child { border-bottom: 1px solid var(--line); }
.info dt { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); padding-top: 4px; }
.info dd { font-size: 1.02rem; }
.info dd a { border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease); }
.info dd a:hover { border-color: var(--ink); }
.info .small { font-size: 0.86rem; color: var(--ink-soft); margin-top: 4px; }

.visit__map { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.visit__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(0.25) contrast(1.02); }
.visit__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--charcoal-2); color: var(--bone); padding-block: clamp(56px, 8vw, 96px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { width: 74px; height: 74px; border-radius: 50%; }
.footer__brand .name { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; letter-spacing: 0.02em; }
.footer__brand .tag { font-size: 0.8rem; color: var(--sage); letter-spacing: 0.05em; margin-top: 4px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: rgba(245,241,232,0.82); font-size: 0.94rem; margin-bottom: 10px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 72px); padding-top: 26px; border-top: 1px solid rgba(245,241,232,0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.78rem; color: rgba(245,241,232,0.55); letter-spacing: 0.03em;
}
.footer__bottom a { color: rgba(245,241,232,0.7); }
.footer__bottom a:hover { color: var(--white); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(20, 22, 21, 0.94);
  display: none; align-items: center; justify-content: center; padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 4px; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #fff; font-size: 2rem; width: 56px; height: 56px;
  display: grid; place-items: center; opacity: 0.8; transition: opacity 0.2s; border-radius: 50%;
}
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; background: rgba(255,255,255,0.1); }
.lightbox__close { top: 20px; right: 24px; }
.lightbox__nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Reveal animation base (GSAP toggles these)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); }
.is-in .reveal, .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 940px) {
  .story__grid, .visit__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 540px; }
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 60vh; }
  .feature--reverse .feature__media { order: 0; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .grid-masonry { grid-template-columns: repeat(2, 1fr); }
  .visit__map iframe { min-height: 360px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Call link: shown only inside the mobile drawer */
.nav__call { display: none; }

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    flex-direction: column; align-items: flex-start; gap: 20px;
    position: fixed; top: 0; left: 0; right: 0; height: 100vh; height: 100dvh;
    background: var(--bone); padding: 96px var(--gutter);
    z-index: 1;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
    pointer-events: none;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav__links .nav__drawer-brand { display: block; position: absolute; top: 12px; left: var(--gutter); }
  .nav__links .nav__drawer-brand img { width: 44px; height: 44px; border-radius: 50%; display: block; }
  .nav__links a:not(.btn) { color: var(--ink) !important; font-size: 1.4rem; font-family: var(--font-display); }
  .nav__links .btn { background: var(--blue); color: #fff; margin-top: 4px; align-self: stretch; text-align: center; }
  .nav__call { display: inline-flex; }
  .hero__scrollcue { display: none; }

  /* menu card -> single column */
  .menu-card { grid-template-columns: 1fr; padding: clamp(26px, 6vw, 40px); }
  .menu-card::before { display: none; }
  .menu-note { flex-direction: column; align-items: flex-start; }

  /* story images -> side-by-side, no overlap */
  .story__media { padding: 0; max-width: none; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .reviews__grid { grid-template-columns: 1fr; }
  .info { grid-template-columns: 1fr; gap: 6px; }
  .info dt { padding-top: 0; }
}

@media (max-width: 460px) {
  .grid-masonry { grid-template-columns: 1fr; }
  .nav__brand .wordmark { display: none; }
}

/* ==========================================================================
   Multi-page build (Home / Menu / About & Contact) — July 2026
   ========================================================================== */
/* persistent active nav item */
.nav__links a[aria-current="page"]:not(.btn)::after { width: 100%; }

/* compact page-header hero for inner pages */
.hero--page { min-height: 56vh; }
.hero--page .hero__inner { padding-bottom: clamp(44px, 7vh, 84px); }
.hero--page h1 { max-width: 20ch; font-size: clamp(2.4rem, 5.6vw, 4.6rem); }

/* centered welcome / intro band */
.welcome { text-align: center; max-width: 66ch; margin-inline: auto; }
.welcome h2 { margin: 16px auto 0; max-width: 20ch; }
.welcome p { color: var(--ink-soft); max-width: 56ch; margin: 20px auto 0; }
.welcome .sign { margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: 1.32rem; color: var(--ink); }

/* highlights row (home) */
.highlights { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.highlight { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: clamp(26px, 2.8vw, 38px); transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.highlight:hover { transform: translateY(-4px); border-color: rgba(180, 98, 62, 0.34); box-shadow: 0 14px 34px -20px rgba(43, 46, 45, 0.4); }
.highlight .k { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.highlight h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 1.8vw, 1.6rem); margin: 12px 0 8px; }
.highlight p { color: var(--ink-soft); font-size: 0.98rem; }

/* dark call-to-action band */
.cta-band { background: var(--charcoal); color: var(--bone); text-align: center; }
.cta-band h2 { color: var(--bone); max-width: 20ch; margin: 0 auto 12px; }
.cta-band p { color: rgba(245, 241, 232, 0.75); max-width: 48ch; margin: 0 auto 26px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { color: var(--bone); }

/* gallery see-more (About) */
.grid-masonry.collapsed figure:nth-child(n+4) { display: none; }
/* mobile: show a single image, rest behind "See more" */
@media (max-width: 720px) { .grid-masonry.collapsed figure:nth-child(n+2) { display: none; } }
.grid-masonry figcaption { display: none; }   /* cleaner: no hover captions */
.gallery__more { text-align: center; margin-top: clamp(24px, 3vw, 36px); }

/* bottom CTA with a map beside it */
.cta-band__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; text-align: left; }
.cta-band__text { align-self: center; }
.cta-band__text .eyebrow { color: var(--blue); }
.cta-band__text h2 { color: var(--bone); max-width: 15ch; margin: 12px 0; }
.cta-band__text p { color: rgba(245,241,232,0.75); max-width: 42ch; margin: 0 0 26px; }
.cta-band__text .btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.cta-band__map { border-radius: 8px; overflow: hidden; border: 1px solid rgba(245,241,232,0.15); min-height: 320px; }
.cta-band__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.3) contrast(1.03); }
@media (max-width: 940px) {
  .cta-band__grid { grid-template-columns: 1fr; text-align: center; }
  .cta-band__text h2, .cta-band__text p { margin-left: auto; margin-right: auto; }
  .cta-band__text .btns { justify-content: center; }
  .cta-band__map { min-height: 300px; }
}

/* about: second story block reads image-right on desktop */
.story--reverse .story__grid { direction: rtl; }
.story--reverse .story__grid > * { direction: ltr; }

@media (max-width: 940px) {
  .highlights { grid-template-columns: 1fr; }
  .story--reverse .story__grid { direction: ltr; }
  .story--reverse .story__media { padding-right: 0; }
}

/* ==========================================================================
   Menu — food showcase grid (real dishes from the shoot)
   ========================================================================== */
.food-strip { text-align: center; margin-top: clamp(46px, 6vw, 78px); }
.food-strip .lede { margin: 14px auto 0; text-align: center; }
.food-grid {
  margin-top: clamp(22px, 2.6vw, 34px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.food-grid figure {
  margin: 0; border-radius: 6px; overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--paper);
}
.food-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.food-grid figure:hover img { transform: scale(1.05); }
.food-grid.collapsed figure:nth-child(n+3) { display: none; }
@media (max-width: 720px) { .food-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ==========================================================================
   About — "our corner" place / history band
   ========================================================================== */
.place { background: var(--paper); }
.place__head { text-align: center; max-width: 60ch; margin-inline: auto; }
.place__head h2 { margin: 16px auto 0; max-width: 20ch; }
.place__band {
  position: relative; margin: clamp(34px, 4.5vw, 56px) 0 0;
  border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 6.4; background: var(--charcoal);
}
.place__band img { width: 100%; height: 100%; object-fit: cover; }
.place__band figcaption {
  position: absolute; left: 0; bottom: 0; margin: 16px;
  padding: 8px 14px; border-radius: 5px;
  background: rgba(28,31,30,0.6); backdrop-filter: blur(2px);
  color: #fff; font-size: 0.76rem; letter-spacing: 0.04em; max-width: 34ch;
}
.place__text { max-width: 60ch; margin: clamp(28px, 3.6vw, 46px) auto 0; }
.place__text p { color: var(--ink-soft); }
.place__text p + p { margin-top: 16px; }
@media (max-width: 640px) {
  .place__band { aspect-ratio: 4 / 3; }
  .place__band figcaption { margin: 10px; font-size: 0.72rem; }
}

/* ==========================================================================
   About — Greek night video (YouTube, privacy mode)
   ========================================================================== */
.greek-night { background: var(--paper); }
.greek-night__head { text-align: center; max-width: 58ch; margin-inline: auto; }
.greek-night__head h2 { margin: 16px auto 0; max-width: 18ch; }
.greek-night__head p { color: var(--ink-soft); max-width: 46ch; margin: 18px auto 0; }
.video-embed {
  position: relative; width: 100%; max-width: 940px;
  margin: clamp(34px, 4.5vw, 56px) auto 0;
  aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden;
  background: var(--charcoal); border: 1px solid var(--line);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   July 28 refinements
   ========================================================================== */

/* Home welcome/highlights sits on a distinct panel so sections don't blend */
.welcome-band { background: var(--paper); }

/* Contained feature panels lift slightly off the page */
.feature { box-shadow: 0 26px 60px -42px rgba(43, 46, 45, 0.55); }

/* Bigger, more present navbar and logo */
.nav.scrolled { padding-block: 17px; }
.nav__brand img, .nav.scrolled .nav__brand img { width: 54px; height: 54px; }
.nav__brand .wordmark { font-size: 1.48rem; }

/* Lighter CTA band, so it reads distinct from the dark panels above it */
.cta-band { background: var(--bone); color: var(--ink); }
.cta-band h2, .cta-band__text h2 { color: var(--ink); }
.cta-band p, .cta-band__text p { color: var(--ink-soft); }
.cta-band .btn-outline { color: var(--ink); border-color: rgba(43, 46, 45, 0.28); }
.cta-band .btn-outline:hover { border-color: var(--ink); }
.cta-band .btn-solid.btn-light { background: var(--ink); color: var(--bone); }
.cta-band .btn-solid.btn-light:hover { background: var(--charcoal); }
.cta-band__map { border-color: var(--line); }

/* Story blocks: lift the image so the sections read less flat */
.story__media-main img { box-shadow: 0 30px 62px -46px rgba(43, 46, 45, 0.5); }

/* Menu starts collapsed, expands on demand */
.menu-card.collapsed { max-height: clamp(360px, 46vh, 560px); overflow: hidden; }
.menu-more { text-align: center; margin-top: clamp(24px, 3vw, 38px); }

/* Instagram section (Our Story) */
.ig { text-align: center; background: #ECE6D8; }
.ig__head { max-width: 60ch; margin: 0 auto; }
.ig__lede { margin: 12px auto 0; color: var(--ink-soft); max-width: 54ch; }
.ig__feed { margin-top: clamp(28px, 3.5vw, 46px); }
/* official Instagram post embeds (3 reels), uniform centered row */
.ig__embeds { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1080px; margin: 0 auto; }
.ig__embeds .instagram-media { width: 320px !important; min-width: 0 !important; max-width: 100% !important; margin: 0 !important; }
.ig__more { margin-top: clamp(28px, 3.2vw, 40px); }

/* Hero visuals fade in from dark, so navigating between pages is smooth, not a hard pop */
.hero__media { background: var(--charcoal); }
.hero__media img, .hero__media video { animation: hero-fade 0.9s var(--ease) both; }
@keyframes hero-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__media img, .hero__media video { animation: none; } }

/* Primary action buttons in the brand blue */
.btn-solid { background: var(--blue); color: #fff; }
.btn-solid:hover { background: #3f6d7c; }
.nav.scrolled .nav__links .btn { background: var(--blue); color: #fff; }
.nav.scrolled .nav__links .btn:hover { background: #3f6d7c; }
/* secondary nav button (Find us) = blue outline, Reserve stays solid */
.nav.scrolled .nav__links .btn.nav-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.nav.scrolled .nav__links .btn.nav-ghost:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.cta-band .btn-solid.btn-light { background: var(--blue); color: #fff; }
.cta-band .btn-solid.btn-light:hover { background: #3f6d7c; }

/* Mobile navbar: keep the logo present but proportionate, not oversized */
@media (max-width: 720px) {
  .nav__brand img, .nav.scrolled .nav__brand img { width: 44px; height: 44px; }
  .nav.scrolled { padding-block: 12px; }
}

/* Events / celebrations — full-bleed background band */
.events { position: relative; overflow: hidden; text-align: center; color: var(--bone); padding-block: clamp(84px, 13vw, 172px); }
.events__bg { position: absolute; inset: 0; z-index: 0; }
.events__bg picture { display: block; width: 100%; height: 100%; }
.events__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.events::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(20, 22, 22, 0.82); }
.events .wrap { position: relative; z-index: 2; }
.events__inner { max-width: 64ch; margin-inline: auto; }
.events .eyebrow { color: var(--blue); justify-content: center; }
.events h2 { color: var(--bone); max-width: 22ch; margin: 16px auto 0; }
.events p { color: rgba(245, 241, 232, 0.9); max-width: 56ch; margin: 22px auto 0; }
/* celebration photo gallery, framed to sit on the dark background */
.events__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 20px); max-width: 1000px; margin: clamp(38px, 4.5vw, 60px) auto 0; }
.events__gallery figure { margin: 0; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; border: 1px solid rgba(245, 241, 232, 0.22); box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.7); }
.events__gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.65s var(--ease); }
.events__gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .events__gallery { grid-template-columns: repeat(2, 1fr); max-width: 460px; } }
