/*
  Μουσαφίρισσα — style.css
  ─────────────────────────────────────────────────────────────
  Serif font: GFS Neohellenic (free, Greek-designed, Google Fonts).
  Only weights 400 and 700 exist — font-weight:500 renders as 400,
  font-weight:600 renders as 700 (bold). Adjust per-element if heavy.
  ─────────────────────────────────────────────────────────────
*/


/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  /* Brand colours — never invent others */
  --wine:       #5C1A1B;   /* Οίνος    — primary */
  --olive:      #6B7A4C;   /* Ελιά     — secondary */
  --cream:      #F2EAD3;   /* Ασβέστης — backgrounds */
  --cream-lt:   #F9F4E8;   /* subtle panel fills */
  --charcoal:   #1F1B17;   /* Σίδερο   — body text */
  --terracotta: #B86B3F;   /* Πηλός    — accent, sparing */
  --grey:       #6B6B6B;   /* secondary text */
  --border:     #D4C9B8;   /* rules, dividers */

  /* Typography */
  --font-serif: 'GFS Neohellenic', Georgia, serif;
  --font-sans:  'Inter', 'Open Sans', system-ui, sans-serif;

  /* Layout */
  --max-w:       1100px;
  --nav-h:       64px;
  --section-gap: clamp(4rem, 9vw, 8rem);
  --gutter:      clamp(1.25rem, 5vw, 2.5rem);
}


/* ═══════════════════════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(31, 27, 23, 0.10);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Small logo mark in nav */
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 42px;
  width: auto;
  /* White background blends with cream via multiply */
  mix-blend-mode: multiply;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--wine); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: pointer;
}
.lang-btn.active { opacity: 1; }
.lang-btn:hover  { opacity: 1; }

.lang-toggle { gap: 8px; }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--wine);
  padding: 0.25rem;
  cursor: pointer;
}

/* Mobile dropdown — below nav bar */
.nav-dropdown {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem var(--gutter);
}
.nav-dropdown.open { display: flex; }
.nav-dropdown__link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-dropdown__link:last-child { border-bottom: none; }
.nav-dropdown__link:hover { color: var(--wine); }


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh; /* fallback for older browsers */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background-color: var(--cream); /* shown while image loads */
}

/* Background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/*
  Overlay: radial cream gradient, densest behind the centred logo
  so it stays crisp on small screens even with a busy photo behind it.
  Edges let the photo breathe through slightly.
*/
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 75% 85% at 50% 48%,
    rgba(242, 234, 211, 0.97) 0%,
    rgba(242, 234, 211, 0.90) 55%,
    rgba(242, 234, 211, 0.82) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem var(--gutter) 5rem;
  max-width: 680px;
  width: 100%;
}

.hero-logo {
  width: min(480px, 78vw);
  height: auto;
  /* White PNG background becomes cream — seamless blend */
  mix-blend-mode: multiply;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
  letter-spacing: 0.015em;
  line-height: 1.45;
  margin-bottom: 2.25rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   BUTTONS (global)
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.1rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #7a2223;
  border-color: #7a2223;
  outline: none;
}

.btn-outline {
  background: var(--cream);
  color: var(--wine);
  border: none;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: #E8E0C9;
  color: var(--wine);
  border: none;
  outline: none;
}


/* ═══════════════════════════════════════════════════════════
   HERO SCROLL INDICATOR
═══════════════════════════════════════════════════════════ */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--wine);
  opacity: 0.5;
  transition: opacity 0.2s;
  animation: nudge-down 2.8s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 0.9; }

@keyframes nudge-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(7px); }
}


/* ═══════════════════════════════════════════════════════════
   SECTION SHELLS (placeholder — filled section by section)
═══════════════════════════════════════════════════════════ */
.section-shell {
  /* Keeps scroll anchors alive between sessions */
  min-height: 1px;
}


/* ═══════════════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
═══════════════════════════════════════════════════════════ */

/* Overline label — used at the top of every section */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--wine);
  flex-shrink: 0;
}

/* Centred section header block (used in rhythms + others) */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  max-width: 620px;
  line-height: 1.45;
}


/* ═══════════════════════════════════════════════════════════
   2. STORY
═══════════════════════════════════════════════════════════ */
.story-section {
  background: var(--cream-lt);
  padding: var(--section-gap) var(--gutter);
  border-top: 1px solid var(--border);
}

.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 62% 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.story-p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.story-p:last-child { margin-bottom: 0; }

.story-p--lead {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--wine);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.story-photo {
  border-radius: 2px;
  overflow: hidden;
  /* Slight vertical offset for visual interest */
  align-self: stretch;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  min-height: 360px;
}

@media (max-width: 720px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-photo {
    order: -1;
  }
  .story-photo img {
    min-height: 280px;
    max-height: 360px;
  }
}


/* ═══════════════════════════════════════════════════════════
   3. TWO RHYTHMS
═══════════════════════════════════════════════════════════ */
.rhythms-section {
  background: var(--cream);
  padding: var(--section-gap) var(--gutter);
  border-top: 1px solid var(--border);
}

.rhythms-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.rhythms-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: stretch; /* cards match height in desktop row */
}

/* Individual card */
.rhythm-card {
  background: var(--cream-lt);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rhythm-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.rhythm-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.rhythm-card:hover .rhythm-card__photo img {
  transform: scale(1.04);
}

.rhythm-card__body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rhythm-card__time {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}

.rhythm-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 500;
  color: var(--wine);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.rhythm-card__desc {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.72;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  flex: 1; /* push link to bottom */
}

.rhythm-card__link {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1.5px solid var(--wine);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.rhythm-card__link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

@media (max-width: 600px) {
  .rhythms-cards {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   4. DAILY LUNCH MENU
═══════════════════════════════════════════════════════════ */
.daily-section {
  background: var(--cream-lt);
  border-top: 1px solid var(--border);
}

/* Photo header strip */
.daily-section__photo-header {
  position: relative;
  height: clamp(280px, 45vh, 520px);
  overflow: hidden;
}
.daily-section__photo-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Wine-red overlay keeps the brand warmth — no cold charcoal */
.daily-section__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(92, 26, 27, 0.42) 0%,
    rgba(92, 26, 27, 0.82) 100%
  );
}
.daily-section__photo-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--gutter);
  text-align: center;
}
.daily-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Light variant of section-label (for dark/photo backgrounds) */
.section-label--light {
  color: rgba(242, 234, 211, 0.75);
  margin-bottom: 0.6rem;
}
.section-label--light::before {
  background: rgba(242, 234, 211, 0.6);
}

/* Inner content */
.daily-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) var(--section-gap);
}

/* Demo note aside */
.demo-note {
  border-left: 3px solid var(--olive);
  background: rgba(107, 122, 76, 0.07);
  border-radius: 0 2px 2px 0;
  padding: 0.9rem 1.25rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.demo-note strong {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}
.demo-note p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--charcoal);
}

/* Options grid — side by side on desktop */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
}

/* Option panel */
.option-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.option-panel__label-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem 0;
}

.option-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.option-badge--a {
  background: var(--olive);
  color: var(--cream);
}
.option-badge--b {
  background: var(--wine);
  color: var(--cream);
}

.option-panel__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

.option-panel__body {
  padding: 1rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.option-panel__desc {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--grey);
}

/* Instagram card (Option A) */
.ig-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--cream-lt);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.ig-card:hover {
  border-color: var(--wine);
  background: var(--cream);
}
.ig-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--wine);
}
.ig-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ig-card__handle {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}
.ig-card__cta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--wine);
}

/* Dynamically rendered daily menu (Option B) */
.menu-updated {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.daily-menu-container {
  flex: 1;
}

.menu-loading {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--grey);
  font-style: italic;
}

.menu-fallback {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
}
.menu-fallback a {
  color: var(--wine);
  border-bottom: 1px solid var(--wine);
  transition: color 0.2s;
}
.menu-fallback a:hover { color: var(--terracotta); }

.daily-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.daily-menu-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.daily-menu-item:last-child { border-bottom: none; }

.daily-menu-item__main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.daily-menu-item__name {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

.daily-menu-item__dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--border);
  margin-bottom: 3px;
  min-width: 1rem;
}

.daily-menu-item__price {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine);
  white-space: nowrap;
}

.daily-menu-item__desc {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--grey);
  margin-top: 0.15rem;
  line-height: 1.5;
}

/* Pros / cons details block */
.option-notes {
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.option-notes__toggle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.option-notes__toggle::-webkit-details-marker { display: none; }
.option-notes__toggle::after {
  content: '↓';
  font-size: 0.8rem;
  transition: transform 0.2s;
}
details[open] .option-notes__toggle::after { transform: rotate(180deg); }
.option-notes__toggle:hover { color: var(--charcoal); }

.option-notes__body {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-notes__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.option-notes__list li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--charcoal);
  padding-left: 1.4rem;
  position: relative;
}

.option-notes__list--pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
  font-size: 0.78rem;
}

.option-notes__list--cons li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

@media (max-width: 680px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   5. EVENING MENU
═══════════════════════════════════════════════════════════ */
.evening-section {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 1px solid rgba(242, 234, 211, 0.08);
}

.evening-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
}

.evening-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.evening-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

/* PDF download buttons */
.menu-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-dl {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid rgba(242, 234, 211, 0.35);
  border-radius: 2px;
  color: rgba(242, 234, 211, 0.75);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-dl:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(242, 234, 211, 0.06);
}

/* Two-column menu layout */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

/* Category block */
.menu-cat-block {
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.menu-cat-block:last-child { margin-bottom: 0; }

.menu-cat-title {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-bottom: 0.65rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(242, 234, 211, 0.1);
}

.menu-list {
  list-style: none;
}

.menu-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(242, 234, 211, 0.06);
}
.menu-item:last-child { border-bottom: none; }

.menu-item__main,
.menu-item__secondary {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.menu-item__secondary {
  margin-top: 0.2rem;
  opacity: 0.78; /* was 0.65 — lifted for readability in sun */
  font-size: 0.9em;
}

.menu-item__name {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(242, 234, 211, 0.22);
  margin-bottom: 3px;
  min-width: 0.5rem;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  /* Cream instead of terracotta: better contrast on charcoal for older eyes / sunny taverna */
  color: rgba(242, 234, 211, 0.92);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__desc {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(242, 234, 211, 0.65); /* was 0.52 — lifted for legibility */
  line-height: 1.5;
  margin-top: 0.18rem;
}

/* Tagline footer */
.evening-tagline {
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 234, 211, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.evening-tagline p:first-child {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--cream);
}
.evening-tagline p:last-child {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(242, 234, 211, 0.45);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item__name { white-space: normal; }
}


/* ═══════════════════════════════════════════════════════════
   6. NEIGHBOUR PRODUCERS
═══════════════════════════════════════════════════════════ */
.producers-section {
  background: var(--olive);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.producers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Override label colours for olive bg */
.producers-inner .section-label--light {
  color: rgba(242, 234, 211, 0.65);
  margin-bottom: 1.5rem;
}
.producers-inner .section-label--light::before {
  background: rgba(242, 234, 211, 0.4);
}

.producers-quote {
  margin: 0 0 2.5rem;
  max-width: 640px;
}
.producers-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.45;
}

.producers-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
}

.producers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.producers-item--divider {
  font-size: 1.2rem;
  color: rgba(242, 234, 211, 0.3);
  padding: 0;
  align-self: center;
}

.producers-item__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.producers-item__note {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(242, 234, 211, 0.6);
  margin-top: 0.2rem;
}

@media (max-width: 500px) {
  .producers-item { padding: 0 0.75rem; }
}


/* ── 6b. NEIGHBOURHOOD PHOTO GRID ──────────────────────────
   Masonry via CSS column-count. Each photo keeps its natural
   aspect ratio — portrait images fill naturally at different
   heights across columns. Featured portrait lands first and
   acts as a tall anchor in column 1.
   Field-note tags on three photos: wine-red, bottom-left.    */

/* ── Cinematic neighbourhood video — postcard frame ── */
.neighbourhood-video-wrap {
  width: 100%;
  max-width: 900px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(31, 27, 23, 0.10), 0 1px 4px rgba(31, 27, 23, 0.06);
  overflow: hidden;
}
.neighbourhood-video-wrap video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 600px) {
  .neighbourhood-video-wrap video { aspect-ratio: 9 / 16; }
}

/* ── Neighbourhood body text ── */
.producers-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-style: normal;
  color: var(--cream);
  text-align: center;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
  padding-top: clamp(2rem, 4vw, 3rem);
}


/* ═══════════════════════════════════════════════════════════
   7. FIND US
═══════════════════════════════════════════════════════════ */
.findus-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.findus-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter);
}

.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 0.5rem;
}

/* Map */
.findus-map {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--cream-lt);
}
.findus-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Info column */
.findus-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block__title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.info-block__body {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: var(--charcoal);
}

.address-link {
  font-style: normal;
  color: var(--charcoal);
  transition: color 0.2s;
  display: inline-block;
  line-height: 1.7;
}
.address-link:hover { color: var(--wine); }

/* Hours */
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hours-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.hours-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey);
  min-width: 6rem;
}
.hours-value {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.hours-note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--olive);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* Contact list */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  transition: color 0.2s;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { color: var(--wine); }
.contact-item__icon {
  flex-shrink: 0;
  color: var(--wine);
}
.contact-item__type {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  min-width: 5.5rem;
  flex-shrink: 0;
}
.contact-item:hover .contact-item__type { color: var(--wine); }
.contact-item__value {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: inherit;
}

@media (max-width: 700px) {
  .findus-grid {
    grid-template-columns: 1fr;
  }
  .findus-map {
    aspect-ratio: 16 / 9;
  }
  .findus-cta {
    align-self: stretch;
    text-align: center;
  }
}

/* ── Find Us: aerial drone reel postcard ──
   Sits centered between the section label and the map+info grid.
   The frame hugs the 267×476 iframe with a thin border + shadow.
   On narrow phones the frame caps at viewport minus gutters so
   the iframe scales down via max-width:100% rather than clipping. */
.findus-postcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.postcard-frame {
  padding: 6px;
  border: 1px solid var(--border);          /* #D4C9B8 */
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(31, 27, 23, 0.10), 0 1px 4px rgba(31, 27, 23, 0.06);
  background: var(--cream);
  width: 100%;
  overflow: hidden;
}

.postcard-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 601px) {
  .postcard-frame video { object-position: center 70%; }
}
@media (max-width: 600px) {
  .postcard-frame { max-width: none; }
  .postcard-frame video { aspect-ratio: 9 / 16; }
}

/* ── Footer photographer credit ── */
.footer-credit {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(242, 234, 211, 0.35);
  letter-spacing: 0.05em;
  text-align: center;
}
.footer-credit__link {
  color: rgba(242, 234, 211, 0.45);
  border-bottom: 1px solid rgba(242, 234, 211, 0.15);
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit__link:hover {
  color: rgba(242, 234, 211, 0.7);
  border-color: rgba(242, 234, 211, 0.35);
}


/* ═══════════════════════════════════════════════════════════
   8. FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(242, 234, 211, 0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* Logo on cream disc — presents as a seal stamp */
.footer-seal {
  width: clamp(100px, 14vw, 140px);
  height: clamp(100px, 14vw, 140px);
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.footer-logo {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: italic;
  color: rgba(242, 234, 211, 0.75);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(242, 234, 211, 0.55);
  transition: color 0.2s;
  text-transform: uppercase;
}
.footer-link:hover { color: var(--cream); }

.footer-link-sep {
  color: rgba(242, 234, 211, 0.2);
  font-size: 0.9rem;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(242, 234, 211, 0.3);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — mobile adjustments
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 56px; }

  .nav-link { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
  .nav-logo { height: 40px !important; }

  .hero-logo { width: min(360px, 82vw); }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: min(280px, 80vw);
  }
  .btn { text-align: center; }
}

@media (max-width: 360px) {
  .hero-logo { width: 80vw; }
}


/* ═══════════════════════════════════════════════════════════
   DESIGN ENHANCEMENTS
   Motion · texture · depth · micro-interactions
   All additions — no existing rules modified.
═══════════════════════════════════════════════════════════ */

/* ── Custom easing tokens ── */
:root {
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-sine: cubic-bezier(0.37, 0, 0.63, 1);
}

/* ── Film-grain / paper texture (SVG feTurbulence, fixed overlay) ──
   Renders as fine monochrome noise tiled over the full page.
   Opacity is intentionally barely perceptible — transforms cream
   from digital white into aged linen without distracting.          */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.048;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ── Scroll reveal ──
   JS adds .reveal to targeted elements, then .visible once
   they enter the viewport. Without JS: classes never set,
   elements stay fully visible (progressive enhancement).     */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Natural stagger for specific paired elements */
.story-photo.reveal           { transition-delay: 0.14s; }
.rhythm-card.reveal:nth-child(2) { transition-delay: 0.13s; }
.findus-info.reveal           { transition-delay: 0.16s; }
.menu-grid.reveal             { transition-delay: 0.1s; }
.producers-list.reveal        { transition-delay: 0.2s; }

/* ── Hero: Ken Burns on background ── */
@keyframes ken-burns {
  from { transform: scale(1);    }
  to   { transform: scale(1.08); }
}
.hero-bg img {
  animation: ken-burns 22s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
}

/* ── Hero: staggered entrance for content elements ── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.hero-logo    { animation: hero-rise 1s var(--ease-expo) 0.15s both; }
.hero-tagline { animation: hero-rise 1s var(--ease-expo) 0.45s both; }
.hero-buttons { animation: hero-rise 1s var(--ease-expo) 0.72s both; }
.hero-scroll  { animation: hero-rise 1s var(--ease-expo) 1.05s both; }

/* ── Nav: glass morphism when scrolled ── */
.site-nav.scrolled {
  background: rgba(242, 234, 211, 0.82);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 rgba(212, 201, 184, 0.5), 0 4px 28px rgba(31, 27, 23, 0.07);
}

/* ── Nav links: ink-underline on hover ── */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--wine);
  transition: width 0.38s var(--ease-expo);
}
.nav-link:hover { color: var(--wine); }
.nav-link:hover::after { width: 100%; }

/* ── Story: oversized decorative guillemet ── */
.story-text { position: relative; }
.story-text::before {
  content: '«';
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  font-family: var(--font-serif);
  font-size: 9rem;
  line-height: 1;
  color: var(--wine);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 720px) {
  .story-text::before { display: none; }
}

/* ── Story: subtle photo tilt (desktop only) ── */
@media (min-width: 721px) {
  .story-photo {
    transform: rotate(0.6deg);
    transition: transform 0.65s var(--ease-expo), box-shadow 0.65s ease;
  }
  .story-photo:hover {
    transform: rotate(0deg) scale(1.012);
    box-shadow: 0 20px 56px rgba(92, 26, 27, 0.1);
  }
}

/* ── Rhythm cards: lift + shadow on hover ── */
.rhythm-card {
  transition: transform 0.45s var(--ease-expo), box-shadow 0.45s ease;
}
.rhythm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(92, 26, 27, 0.11);
}

/* ── Rhythm card link: letter-spacing expand ── */
.rhythm-card__link {
  transition: color 0.2s, border-color 0.2s, letter-spacing 0.38s var(--ease-expo);
}
.rhythm-card__link:hover { letter-spacing: 0.15em; }

/* ── Daily menu: category headings within cream context ──
   .menu-cat-title from evening menu uses a near-invisible
   border on dark bg. Override for the light daily section. */
.daily-menu-container .menu-cat-title {
  border-bottom-color: var(--border);
  margin-top: 1.75rem;
}
.daily-menu-container .menu-cat-title:first-child { margin-top: 0; }

/* ── Daily menu items: warm left accent on hover ── */
.daily-menu-item {
  position: relative;
  transition: padding-left 0.22s var(--ease-expo);
}
.daily-menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 60%;
  background: var(--wine);
  opacity: 0.18;
  transition: width 0.22s var(--ease-expo);
  border-radius: 0 1px 1px 0;
}
.daily-menu-item:hover { padding-left: 0.55rem; }
.daily-menu-item:hover::before { width: 3px; }

/* ── Evening section: richer gradient depth ── */
.evening-section {
  background: linear-gradient(
    155deg,
    #252018 0%,
    #1F1B17 48%,
    #181410 100%
  );
}

/* ── Evening menu items: subtle indent on hover ── */
.menu-item {
  transition: padding-left 0.2s var(--ease-expo);
}
.menu-item:hover { padding-left: 0.4rem; }

/* ── Producers section: diagonal weave on olive ── */
.producers-section {
  background:
    repeating-linear-gradient(
      -48deg,
      transparent 0px,
      transparent 44px,
      rgba(0, 0, 0, 0.028) 44px,
      rgba(0, 0, 0, 0.028) 45px
    ),
    var(--olive);
}

/* ── Buttons: sheen micro-interaction ── */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%
  );
  transform: translateX(-110%);
  transition: transform 0.55s var(--ease-expo);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }

/* ── Contact items: horizontal slide on hover ── */
.contact-item {
  transition: color 0.2s, transform 0.28s var(--ease-expo);
}
.contact-item:hover { transform: translateX(6px); }
.contact-item:hover .contact-item__type { color: var(--wine); }

/* ── Address link: matching slide ── */
.address-link {
  transition: color 0.2s, transform 0.28s var(--ease-expo);
  display: inline-block;
}
.address-link:hover { transform: translateX(4px); }

/* ── Footer seal: gentle rotation on hover ── */
.footer-seal {
  transition: transform 0.75s var(--ease-expo);
}
.footer-seal:hover { transform: rotate(7deg) scale(1.05); }

/* ── Smooth scroll margin so anchors clear fixed nav ── */
[id] { scroll-margin-top: calc(var(--nav-h) + 0.5rem); }


/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY REFINEMENTS
   All entries override earlier declarations via cascade.
   Goal: coherent scale · ≥11px legibility floor everywhere ·
   better Greek diacritic breathing room · WCAG contrast fixes.
═══════════════════════════════════════════════════════════ */

/* ── Base rendering ── */
body {
  line-height: 1.72;                   /* was 1.65 — Greek diacritics need air  */
  text-rendering: optimizeLegibility;  /* enables kern/liga fallback in browsers */
  font-optical-sizing: auto;
}

/* ── OpenType features on editorial serif content ──
   GFS Neohellenic has solid kern and liga support;
   these ensure the best rendering across browsers.    */
.story-p,
.story-p--lead,
.rhythm-card__desc,
.daily-menu-item__name,
.daily-menu-item__desc,
.menu-item__name,
.menu-item__desc,
.producers-quote p,
.evening-tagline p {
  font-feature-settings: 'liga' 1, 'kern' 1;
}

/* ── Tabular lining figures on prices ──
   Ensures price digits and € symbols align vertically
   when scanning down a menu column.                       */
.daily-menu-item__price,
.menu-item__price,
.hours-value {
  font-variant-numeric: tabular-nums lining-nums;
}

/* ── Hero tagline: commensurate with the cinematic hero ── */
.hero-tagline {
  font-size: clamp(1.45rem, 3.6vw, 2.05rem);  /* was clamp(1.3rem, 3.2vw, 1.8rem) */
  line-height: 1.4;
  letter-spacing: 0.025em;
}

/* ── Section overlines: raise minimum above 11px ── */
.section-label {
  font-size: 0.72rem;     /* was 0.7rem */
  letter-spacing: 0.25em; /* was 0.22em — compensates at compact size */
}

/* ── Shared section titles: stronger scale ── */
.section-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);  /* was clamp(1.35rem, 2.4vw, 1.9rem) */
  line-height: 1.42;
}

/* ── Story: body copy rhythm ── */
.story-p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);   /* was clamp(1.1rem, 1.35vw, 1.25rem) */
  line-height: 1.88;                            /* was 1.85 */
}
.story-p--lead {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);  /* was clamp(1.3rem, 2vw, 1.55rem) */
  line-height: 1.55;                            /* was 1.6 */
}

/* ── Rhythm cards ── */
.rhythm-card__time {
  font-size: 0.75rem;     /* was 0.72rem */
  letter-spacing: 0.17em; /* was 0.15em  */
}
.rhythm-card__title {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);  /* was clamp(1.6rem, 2.5vw, 2.1rem) */
}
.rhythm-card__desc {
  font-size: clamp(1rem, 1.15vw, 1.08rem);  /* was clamp(0.95rem, 1.05vw, 1.05rem) */
  line-height: 1.78;                          /* was 1.72 */
}
.rhythm-card__link {
  font-size: 0.8rem;     /* was 0.78rem */
  letter-spacing: 0.12em;
}

/* ── Daily menu photo caption ── */
.daily-section__title {
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);  /* was clamp(1.6rem, 3.5vw, 2.4rem) */
  line-height: 1.28;
}

/* ── Daily menu items ──
   Dish names are the primary content; price is secondary.
   Both need to be confidently readable in a busy context.  */
.daily-menu-item__name {
  font-size: clamp(1rem, 1.15vw, 1.1rem);  /* was clamp(0.98rem, 1.1vw, 1.05rem) */
  white-space: normal;                      /* was nowrap — prevents mobile overflow */
}
.daily-menu-item__price {
  font-size: 0.92rem;   /* was 0.88rem */
}
.daily-menu-item__desc {
  font-size: 0.875rem;  /* was 0.85rem */
  line-height: 1.58;    /* was 1.5    */
}

/* ── Evening menu: category headings ──
   0.16em letter-spacing: long GR titles like
   "ΠΑΡΑΔΟΣΙΑΚΕΣ ΓΑΣΤΡΕΣ ΚΑΙ ΠΙΑΤΑ" need horizontal room,
   not extra spread. Short EN titles (BREAD, SPREADS) look
   equally crisp at this tighter spacing.                    */
.menu-cat-title {
  font-size: 0.76rem;   /* was 0.63rem → 0.72rem → 0.76rem; user confirmed still too small */
  letter-spacing: 0.16em;
}

/* ── Evening menu category blocks ── */
.menu-cat-block {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

/* ── Evening menu items ──
   Descriptions ("ingredients") were ~14.7px — too small for a
   restaurant menu, especially italic on dark in low light.
   Raised to 1.05rem (~16.8px) so they read without effort.   */
.menu-item {
  padding: 0.75rem 0;
}
.menu-item__name {
  font-size: clamp(1.08rem, 1.25vw, 1.18rem);  /* slight bump: titles also flagged as small */
  white-space: normal;
}
.menu-item__price {
  font-size: 0.95rem;
}
.menu-item__desc {
  font-size: 1.05rem;   /* was 0.92rem ≈ 14.7px — confidently readable now */
  line-height: 1.7;
  color: rgba(242, 234, 211, 0.88);  /* lifted from 0.82 — italic needs more contrast */
}

/* ── Evening tagline ── */
.evening-tagline p:first-child {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);  /* was clamp(1.05rem, 1.5vw, 1.25rem) */
}
.evening-tagline p:last-child {
  font-size: 0.92rem;   /* was 0.9rem */
  color: rgba(242, 234, 211, 0.58);  /* was 0.45 — near-invisible; WCAG improvement */
  line-height: 1.72;    /* was 1.65   */
}

/* ── Producers ── */
.producers-quote p {
  font-size: clamp(1.45rem, 3.1vw, 2.05rem);  /* was clamp(1.4rem, 3vw, 2rem) */
  line-height: 1.48;
}
.producers-item__label {
  font-size: 0.75rem;     /* was 0.72rem */
  letter-spacing: 0.18em; /* was 0.16em  */
}
.producers-item__note {
  font-size: 0.9rem;  /* was 0.88rem */
}

/* ── Find Us section ──
   Three issues fixed here:
   1. <address> element has browser-default font-style:italic — reset it.
   2. .info-block__body was font-serif; contact/hours are sans → mismatch.
   3. .hours-value was font-weight:600 — too heavy relative to everything
      else in the column; 500 keeps the number readable without shouting.  */
.info-block__title {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
}
.info-block__body {
  font-family: var(--font-sans);               /* was font-serif — now unified with hours/contact */
  font-style: normal;                          /* resets <address> browser default italic */
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.72;
}
.hours-label {
  font-size: 0.92rem;   /* was 0.85rem — equalised with value; colour alone carries hierarchy */
  min-width: 6.5rem;
}
.hours-value {
  font-size: 0.92rem;   /* was 1rem — equalised with label */
  font-weight: 500;     /* was 600 — too heavy */
}
.hours-note {
  font-size: 0.8rem;    /* was 0.78rem */
  letter-spacing: 0.08em;
}
.contact-item__type {
  font-size: 0.75rem;   /* was 0.72rem */
  letter-spacing: 0.12em; /* was 0.1em */
}
.contact-item__value {
  font-size: 0.95rem;   /* was 0.92rem */
}

/* ── Footer ── */
.footer-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);  /* was clamp(1rem, 1.5vw, 1.15rem) */
}
.footer-link {
  font-size: 0.8rem;    /* was 0.78rem */
  letter-spacing: 0.1em;
}

/* ── Social note ── */
.menu-social-note {
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ── Mobile bumps (360–600px) ──
   Small-but-critical UI labels need a floor override on
   compact viewports where clamp minimums aren't enough.   */
@media (max-width: 600px) {
  .section-label          { font-size: 0.74rem; }
  .hero-tagline           { letter-spacing: 0.01em; }
  .rhythm-card__time      { font-size: 0.78rem; }
  .rhythm-card__link      { font-size: 0.82rem; }
  .daily-menu-item__name  { font-size: 1.02rem; }
  .daily-menu-item__price { font-size: 0.95rem; }
  .menu-cat-title         { font-size: 0.78rem; letter-spacing: 0.14em; }
  .menu-item__name        { font-size: 1.08rem; }
  .menu-item__price       { font-size: 0.95rem; }
  .menu-item__desc        { font-size: 1.05rem; }
  .info-block__title      { font-size: 0.72rem; }
  .contact-item__type     { font-size: 0.78rem; }
  .hours-label            { font-size: 0.92rem; }
  .hours-value            { font-size: 0.92rem; }
  .footer-link            { font-size: 0.82rem; letter-spacing: 0.09em; }
  .lang-btn               { font-size: 0.82rem; }
  .btn                    { font-size: 0.86rem; }
  .menu-social-note       { font-size: 0.85rem; }
}
