/* ═══════════════ MAESTRANZA skg ═══════════════
   Charcoal #0D0D0C · Bone #F0EFEA · Ember #B03A2E · Ash #2A2A28 */

:root {
  --char: #0d0d0c;
  --bone: #f0efea;
  --ember: #b03a2e;
  --ash: #2a2a28;
  --display: "Archivo Black", sans-serif;
  --body: "Space Grotesk", sans-serif;
  --mono: "Space Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--char);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ember); color: var(--bone); }
.mono { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── logo mark (campfire line-art, from brand logo) ─── */
.mark-line { fill: none; stroke: var(--bone); stroke-width: 3.4; stroke-linejoin: round; stroke-linecap: round; }

/* ═══ PRELOADER ═══ */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--char);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-mark { width: 64px; margin: 0 auto 28px; animation: flicker 1.6s infinite; }
@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  40% { opacity: 0.75; transform: scale(0.98); }
  60% { opacity: 0.95; transform: scale(1.015); }
}
.preloader-text { color: var(--bone); opacity: 0.8; }
.preloader-bar { width: 220px; height: 1px; background: var(--ash); margin: 18px auto 0; }
.preloader-bar-fill { width: 0%; height: 100%; background: var(--ember); transition: width 0.25s ease; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: transform 0.45s ease, background 0.45s ease;
}
.nav.hidden { transform: translateY(-110%); }
.nav.solid { background: rgba(13, 13, 12, 0.82); backdrop-filter: blur(14px); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-mark { width: 26px; }
.nav-wordmark {
  font-family: var(--body); font-weight: 600;
  letter-spacing: 0.42em; font-size: 0.82rem;
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 3vw, 38px); }
.nav-links a {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.85; transition: opacity 0.25s, color 0.25s;
}
.nav-links a:hover { opacity: 1; color: var(--ember); }
.nav-cta {
  border: 1px solid var(--ember); color: var(--bone) !important;
  padding: 10px 20px; border-radius: 999px;
  background: var(--ember); opacity: 1 !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { background: #c94b3d; transform: translateY(-1px); }

/* ─── mobile burger + overlay menu ─── */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px 6px; z-index: 60; position: relative; }
.nav-burger span { display: block; width: 25px; height: 2px; background: var(--bone); margin: 5px 0; transition: transform 0.35s, opacity 0.35s; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(13, 13, 12, 0.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 9vw;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mm-links { display: flex; flex-direction: column; }
.mm-links a {
  font-family: var(--display);
  font-size: clamp(2rem, 9.5vw, 3.2rem);
  line-height: 1.3; color: var(--bone);
  border-bottom: 1px solid var(--ash); padding: 14px 0;
}
.mm-links a.mm-book { color: var(--ember); }
.mm-contact { margin-top: 34px; opacity: 0.65; }
.mm-contact a:hover { color: var(--ember); }

/* ═══ HERO ═══ */
.hero { height: 520vh; position: relative; }
.hero-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
#fireCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(13, 13, 12, 0.62) 100%),
    linear-gradient(rgba(13, 13, 12, 0.42), transparent 28%, transparent 70%, rgba(13, 13, 12, 0.72));
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 4vw; pointer-events: none;
}
.hero-kicker { opacity: 0.7; margin-bottom: 2.4vh; color: var(--bone); }
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 11.6vw, 12.5rem);
  line-height: 0.92; letter-spacing: -0.015em;
  color: var(--bone);
  text-shadow: 0 8px 60px rgba(13, 13, 12, 0.55);
  white-space: nowrap;
}
.hero-title span { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  display: flex; align-items: baseline; gap: 18px;
  margin-top: 1.2vh;
}
.hero-skg {
  font-family: var(--mono); font-style: italic; font-size: clamp(1.1rem, 2.6vw, 2rem);
  color: var(--ember); font-weight: 700;
}
.hero-tag {
  font-family: var(--body); font-weight: 500;
  font-size: clamp(1rem, 2.2vw, 1.7rem); letter-spacing: 0.04em;
}
.hero-note { position: absolute; bottom: 12vh; opacity: 0.65; max-width: 90vw; }

/* ─── scroll-synced shot captions ─── */
.hero-captions {
  position: absolute;
  right: max(5vw, 24px);
  bottom: 19vh;
  height: 1.4em;
  pointer-events: none;
  z-index: 3;
}
.hero-cap {
  position: absolute; right: 0; bottom: 0;
  margin: 0; white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.75vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ember);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 6px 30px rgba(0, 0, 0, 0.8);
  visibility: hidden;
}
.cap-w { display: inline-block; }
.cap-l { display: inline-block; will-change: transform, opacity; }
.hero-scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.22em; opacity: 0.7;
}
.scrollcue-line {
  width: 1px; height: 44px; background: linear-gradient(var(--bone), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══ TICKER ═══ */
.ticker {
  border-top: 1px solid var(--ash); border-bottom: 1px solid var(--ash);
  overflow: hidden; padding: 18px 0; background: var(--char);
  position: relative; z-index: 2;
}
.ticker-track { display: flex; gap: 42px; width: max-content; align-items: center; }
.ticker-track span {
  font-family: var(--body); font-weight: 600; letter-spacing: 0.14em;
  font-size: 0.95rem; white-space: nowrap;
}
.ticker-track span em {
  font-style: normal; font-weight: 400; opacity: 0.55;
  font-size: 0.8rem; margin-left: 10px; letter-spacing: 0.06em;
}
.ticker-track i { color: var(--ember); font-style: normal; }

/* ═══ SECTION LABEL ═══ */
.section-label {
  display: flex; align-items: center; gap: 14px;
  text-transform: uppercase; opacity: 0.85; margin-bottom: clamp(30px, 5vh, 60px);
}
.label-tag {
  background: var(--ember); color: var(--bone);
  padding: 3px 9px; font-weight: 700;
}

/* ═══ MANIFESTO ═══ */
.manifesto {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 18vh clamp(24px, 8vw, 140px);
  background: var(--bone); color: var(--char);
}
.manifesto .label-tag { color: var(--bone); }
.manifesto-text {
  font-family: var(--body); font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 3.4rem);
  line-height: 1.28; letter-spacing: -0.01em; max-width: 1080px;
}
.manifesto-text .w { opacity: 0.12; display: inline-block; }

/* ═══ VALUES ═══ */
.values {
  background: var(--bone); color: var(--char);
  padding: 4vh clamp(24px, 8vw, 140px) 16vh;
}
.value-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(13, 13, 12, 0.18); padding: 3.4vh 0;
  overflow: hidden;
}
.value-word {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--char);
}
.value-row:nth-child(2) .value-word { color: var(--ember); }
.value-def { opacity: 0.6; text-align: right; }

/* ═══ STORY CARDS ═══ */
.stories {
  background: var(--char);
  padding: 14vh clamp(16px, 5vw, 80px) 10vh;
  position: relative;
}
.card-stack { display: flex; flex-direction: column; gap: 6vh; }
.story-card {
  position: sticky; top: 11vh;
  display: grid; grid-template-columns: 44% 1fr;
  min-height: 76vh;
  background: #161615;
  border: 1px solid var(--ash);
  border-radius: 6px; overflow: hidden;
  will-change: transform;
}
.story-card::before {
  content: attr(data-index);
  position: absolute; top: 0; right: 0; z-index: 3;
  font-family: var(--mono); font-weight: 700; font-size: 0.8rem;
  background: var(--ember); color: var(--bone);
  padding: 8px 16px;
}
.card-media { position: relative; overflow: hidden; }
.card-media img {
  position: absolute; inset: 0; width: 100%; height: 110%;
  object-fit: cover; will-change: transform;
}
.card-body {
  padding: clamp(28px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.card-el { color: var(--ember); font-weight: 700; letter-spacing: 0.3em; }
.card-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.95; letter-spacing: -0.01em;
}
.card-copy { max-width: 46ch; opacity: 0.82; font-size: clamp(0.95rem, 1.2vw, 1.12rem); }
.card-tag {
  align-self: flex-start;
  border: 1px dashed rgba(240, 239, 234, 0.35);
  padding: 7px 14px; font-size: 0.68rem; letter-spacing: 0.18em;
  opacity: 0.75;
}

/* ═══ REVIEWS SLIDER ═══ */
.reviews { padding: 12vh 0 8vh; overflow: hidden; }
.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding: 0 clamp(24px, 8vw, 140px); margin-bottom: 5vh; flex-wrap: wrap;
}
.reviews-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-title span { color: var(--ember); font-size: 0.42em; letter-spacing: 0.02em; }
.reviews-sub { opacity: 0.55; margin-top: 12px; }
.reviews-nav { display: flex; gap: 10px; }
.rev-btn {
  width: 52px; height: 52px; border-radius: 999px;
  background: transparent; border: 1px solid var(--ash); color: var(--bone);
  font-size: 1.1rem; cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.rev-btn:hover { border-color: var(--ember); background: var(--ember); transform: translateY(-2px); }
.rev-btn:disabled { opacity: 0.3; cursor: default; transform: none; background: transparent; border-color: var(--ash); }

.reviews-track {
  display: flex; gap: 22px;
  padding: 0 clamp(24px, 8vw, 140px) 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(420px, 82vw); scroll-snap-align: start;
  background: #161615; border: 1px solid var(--ash); border-radius: 6px;
  padding: clamp(24px, 3vw, 38px);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.3s;
}
.review:hover { border-color: rgba(176, 58, 46, 0.5); }
.review-stars { color: var(--ember); letter-spacing: 0.22em; font-size: 0.95rem; }
.review blockquote {
  font-size: clamp(0.98rem, 1.2vw, 1.12rem); line-height: 1.55;
  opacity: 0.9; flex: 1;
}
.review figcaption { display: flex; flex-direction: column; gap: 5px; padding-top: 6px; border-top: 1px solid var(--ash); }
.review-name { font-weight: 600; letter-spacing: 0.02em; }
.review-meta { opacity: 0.5; font-size: 0.68rem; letter-spacing: 0.1em; }
.reviews-link {
  display: inline-block; margin: 4vh clamp(24px, 8vw, 140px) 0;
  color: var(--bone); opacity: 0.7;
  border-bottom: 1px solid var(--ember); padding-bottom: 4px;
  transition: opacity 0.3s, color 0.3s;
}
.reviews-link:hover { opacity: 1; color: var(--ember); }

/* ═══ JOURNAL TEASER ═══ */
.journal-teaser {
  padding: 12vh clamp(24px, 8vw, 140px);
  border-top: 1px solid var(--ash);
}
.jt-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 5vh; }
.jt-title { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.02em; }
.jt-title em { font-style: normal; color: var(--ember); }
.jt-all { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; border-bottom: 1px solid var(--ember); padding-bottom: 5px; }
.jt-all:hover { color: var(--ember); }
.jt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 22px; }
.jt-card {
  border: 1px solid var(--ash); border-radius: 5px; background: #141413;
  padding: clamp(22px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.jt-card:hover { border-color: rgba(176, 58, 46, 0.55); transform: translateY(-3px); }
.jt-kicker { color: var(--ember); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.jt-card h3 { font-family: var(--body); font-weight: 600; font-size: 1.15rem; line-height: 1.32; }
.jt-card p { font-size: 0.92rem; opacity: 0.7; line-height: 1.5; }

/* ═══ FAQ ═══ */
.faq { padding: 10vh clamp(24px, 8vw, 140px) 6vh; max-width: 1100px; }
.faq-item {
  border-top: 1px solid var(--ash);
  padding: 26px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--ash); }
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--body); font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--mono); color: var(--ember);
  font-size: 1.4rem; transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; opacity: 0.78; max-width: 70ch; }
.faq-item a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }

/* ═══ BOOK ═══ */
.book {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 18vh clamp(20px, 6vw, 80px) 12vh;
  background:
    radial-gradient(ellipse 70% 46% at 50% 108%, rgba(176, 58, 46, 0.34), transparent),
    var(--char);
}
.book-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 13vw, 14rem);
  line-height: 0.92; letter-spacing: -0.015em;
  margin: 2vh 0 4vh;
}
.book-line { display: block; overflow: hidden; }
.book-line > * { display: inline; }
.book-flame { color: var(--ember); font-size: 0.5em; vertical-align: 0.35em; margin-left: 0.12em; }
.book-copy { max-width: 44ch; opacity: 0.75; margin-bottom: 5vh; }
.book-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.btn-ember, .btn-ghost {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.78rem; padding: 18px 38px; border-radius: 999px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.btn-ember { background: var(--ember); color: var(--bone); }
.btn-ember:hover { background: #c94b3d; transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--ash); color: var(--bone); }
.btn-ghost:hover { border-color: var(--bone); transform: translateY(-2px); }
.book-details {
  display: flex; gap: clamp(24px, 6vw, 90px); flex-wrap: wrap; justify-content: center;
  margin-top: 10vh; opacity: 0.75; font-size: 0.72rem; letter-spacing: 0.1em;
}
.book-details span { display: block; color: var(--ember); font-weight: 700; margin-bottom: 6px; }
.book-details a:hover { color: var(--ember); }

/* ═══ PRIVATE ═══ */
.private {
  border-top: 1px solid var(--ash);
  padding: 14vh clamp(24px, 8vw, 140px) 14vh;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.private-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8.5vw, 8rem);
  line-height: 0.94; letter-spacing: -0.01em;
  margin: 1vh 0 6vh;
}
.private-title em { font-style: normal; color: var(--ember); }
.private-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 1240px; text-align: left; margin-bottom: 7vh;
}
.private-opt {
  border: 1px solid var(--ash); border-radius: 5px;
  padding: clamp(24px, 3vw, 44px);
  background: #141413;
  transition: border-color 0.3s, transform 0.3s;
}
.private-opt:hover { border-color: rgba(176, 58, 46, 0.6); transform: translateY(-3px); }
.private-el { color: var(--ember); font-weight: 700; letter-spacing: 0.26em; margin-bottom: 14px; }
.private-opt h3 {
  font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin-bottom: 14px; letter-spacing: 0.01em;
}
.private-opt p:last-child { opacity: 0.75; font-size: 0.98rem; }
.private-note { opacity: 0.6; margin-bottom: 2vh; }
.private-phone {
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 6rem);
  letter-spacing: 0.02em; line-height: 1;
  color: var(--bone);
  border-bottom: 4px solid var(--ember);
  padding-bottom: 10px;
  transition: color 0.3s, letter-spacing 0.4s;
}
.private-phone:hover { color: var(--ember); letter-spacing: 0.06em; }

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--ash);
  padding: 9vh 6vw; text-align: center;
}
.footer-mark { width: 40px; margin: 0 auto 24px; }
.footer-quote { opacity: 0.65; margin-bottom: 10px; }
.footer-social { opacity: 0.7; margin-bottom: 14px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.footer-social a:hover { color: var(--ember); }
.footer-legal { opacity: 0.35; font-size: 0.65rem; }

/* ═══════════════ SUBPAGES (menu / about / team) ═══════════════ */
.nav-links a.active { color: var(--ember); opacity: 1; }

.subhero {
  padding: 22vh clamp(24px, 8vw, 140px) 8vh;
  border-bottom: 1px solid var(--ash);
}
.sub-title {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 9.5rem);
  line-height: 0.92; letter-spacing: -0.015em;
  margin: 10px 0 18px;
}
.sub-title em { font-style: normal; color: var(--ember); }
.sub-note { opacity: 0.6; max-width: 60ch; }

.sub-section { padding: 8vh clamp(24px, 8vw, 140px) 6vh; }

/* ─── menu ─── */
.menu-cat {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  letter-spacing: 0.01em; margin-bottom: 12px;
}
.menu-cat em {
  font-style: normal; font-family: var(--mono);
  font-size: 0.9rem; color: var(--ember);
  letter-spacing: 0.22em; margin-left: 16px; text-transform: uppercase;
}
.menu-cat-note { font-family: var(--mono); font-size: 0.7rem; opacity: 0.5; letter-spacing: 0.12em; margin-bottom: 40px; }
.dishes { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(430px, 100%), 1fr)); gap: 28px; margin-bottom: 9vh; }
.dish {
  display: grid; grid-template-columns: 118px 1fr; gap: 20px;
  border: 1px solid var(--ash); border-radius: 4px;
  background: #141413; padding: 18px;
  transition: border-color 0.3s, transform 0.3s;
}
.dish:hover { border-color: rgba(176, 58, 46, 0.6); transform: translateY(-2px); }
.dish-photo {
  position: relative; width: 118px; height: 118px;
  border-radius: 3px; overflow: hidden; background: #1c1c1a;
}
.dish-photo img { width: 100%; height: 100%; object-fit: cover; }
.dish-photo.empty img { display: none; }
.dish-photo.empty {
  border: 1px dashed rgba(240, 239, 234, 0.28);
  display: flex; align-items: center; justify-content: center;
}
.dish-photo.empty::after {
  content: "ΦΩΤΟ\A ADD PHOTO";
  white-space: pre; text-align: center;
  font-family: var(--mono); font-size: 0.56rem;
  letter-spacing: 0.18em; opacity: 0.45; line-height: 2;
}
.dish-info { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.dish-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.dish-head h3 { font-family: var(--body); font-weight: 600; font-size: 1.06rem; letter-spacing: 0.01em; }
.dish-en { display: block; font-weight: 400; font-size: 0.78rem; color: var(--ember); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; font-family: var(--mono); }
.dish-price { font-family: var(--mono); font-weight: 700; white-space: nowrap; color: var(--bone); }
.dish-desc { font-size: 0.86rem; opacity: 0.72; line-height: 1.5; }
.dish-desc.en { opacity: 0.45; font-size: 0.78rem; }

/* ─── about ─── */
.about-wrap { max-width: 900px; }
.about-lead {
  font-family: var(--body); font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.4; margin-bottom: 5vh;
}
.about-lead::first-letter { color: var(--ember); }
.about-body p { opacity: 0.8; margin-bottom: 3.2vh; max-width: 72ch; font-size: 1.02rem; }
.about-quote {
  border-left: 3px solid var(--ember);
  padding: 14px 0 14px 28px; margin: 6vh 0;
  font-family: var(--mono); font-size: 1.02rem; opacity: 0.85; font-style: italic;
}
.about-photo { border-radius: 5px; overflow: hidden; margin: 7vh 0; border: 1px solid var(--ash); }
.about-photo img { width: 100%; }
.about-photo figcaption { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; opacity: 0.5; padding: 12px 4px; text-transform: uppercase; }

/* ─── journal list ─── */
.journal-list { display: flex; flex-direction: column; max-width: 900px; }
.j-entry {
  display: block; border-top: 1px solid var(--ash);
  padding: clamp(28px, 4vh, 46px) 0;
  transition: opacity 0.3s;
}
.journal-list .j-entry:last-child { border-bottom: 1px solid var(--ash); }
.j-meta { display: flex; align-items: center; gap: 14px; opacity: 0.55; font-size: 0.68rem; letter-spacing: 0.14em; margin-bottom: 14px; }
.j-tag { background: var(--ember); color: var(--bone); padding: 3px 9px; font-weight: 700; opacity: 1; }
.j-entry h2 {
  font-family: var(--body); font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem); line-height: 1.25;
  letter-spacing: -0.01em; margin-bottom: 12px;
  transition: color 0.3s;
}
a.j-entry:hover h2 { color: var(--ember); }
.j-excerpt { opacity: 0.72; max-width: 70ch; line-height: 1.55; margin-bottom: 14px; }
.j-more { color: var(--ember); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.j-soon { opacity: 0.55; }
.j-soon .j-tag { background: var(--ash); }
.j-soon .j-more { color: var(--bone); opacity: 0.45; }

/* ─── article ─── */
.article { max-width: 760px; }
.article-lead {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.5;
  margin-bottom: 5vh; opacity: 0.95;
}
.article h2 {
  font-family: var(--body); font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.3;
  margin: 6vh 0 2.2vh; letter-spacing: -0.01em;
}
.article h3 { font-family: var(--body); font-weight: 600; font-size: 1.1rem; margin: 4vh 0 1.4vh; }
.article p { opacity: 0.82; margin-bottom: 2.6vh; line-height: 1.65; }
.article ul, .article ol { margin: 0 0 3vh 1.2em; opacity: 0.82; }
.article li { margin-bottom: 1.1vh; line-height: 1.6; }
.article a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.article strong { color: var(--bone); font-weight: 600; }
.answer-box {
  border-left: 3px solid var(--ember); background: #161615;
  padding: 24px 28px; margin: 0 0 5vh; border-radius: 0 4px 4px 0;
}
.answer-box p { margin: 0; opacity: 0.92; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0.5; font-size: 0.7rem; letter-spacing: 0.12em; margin-bottom: 4vh; }
.article-sources { border-top: 1px solid var(--ash); margin-top: 7vh; padding-top: 3vh; font-size: 0.85rem; opacity: 0.6; }
.article-sources li { margin-bottom: 0.8vh; }

/* ─── team ─── */
.team-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
}
.member {
  background: #141413; border: 1px solid var(--ash); border-radius: 4px;
  overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.member:hover { border-color: rgba(176, 58, 46, 0.6); transform: translateY(-3px); }
.member-photo { position: relative; aspect-ratio: 4/5; background: #1c1c1a; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.85) contrast(1.05); transition: filter 0.4s; }
.member:hover .member-photo img { filter: grayscale(0.1) contrast(1); }
.member-photo.empty img { display: none; }
.member-photo.empty { border-bottom: 1px dashed rgba(240, 239, 234, 0.28); display: flex; align-items: center; justify-content: center; }
.member-photo.empty::after {
  content: "ΦΩΤΟ\A ADD PHOTO\A black tee · arms crossed";
  white-space: pre; text-align: center;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.16em; opacity: 0.45; line-height: 2.1;
}
.member-info { padding: 18px 20px 22px; }
.member-name { font-family: var(--body); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em; }
.member-role { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--ember); text-transform: uppercase; margin-top: 6px; }

.sub-cta { text-align: center; padding: 10vh 6vw 14vh; }
.sub-cta .btn-ember { display: inline-block; margin-top: 26px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero { height: 420vh; }
  .hero-title { font-size: min(10.6vw, 5rem); }
  .dish { grid-template-columns: 96px 1fr; padding: 14px; }
  .dish-photo { width: 96px; height: 96px; }
  .story-card { grid-template-columns: 1fr; min-height: auto; top: 9vh; }
  .card-media { height: 42vh; }
  .card-media img { position: relative; height: 100%; }
  .value-row { flex-direction: column; gap: 6px; }
  .value-def { text-align: left; }
  .private-options { grid-template-columns: 1fr; }
  .hero-note { display: none; }
  /* captions move under the tagline, centred */
  .hero-captions {
    position: relative; right: auto; bottom: auto;
    margin-top: 2.8vh; width: 100%; height: 1.5em;
  }
  .hero-cap {
    right: auto; left: 50%; transform: translateX(-50%); bottom: auto; top: 0;
    font-size: 1.15rem; letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scrollcue-line, .preloader-mark { animation: none; }
}

/* ═══════════════ BILINGUAL EVENT PAGE ═══════════════ */
.lang-en { display: none; }
html[data-lang="en"] .lang-el { display: none; }
html[data-lang="en"] .lang-en { display: block; }

.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--ash); border-radius: 999px;
  overflow: hidden; margin-right: 4px;
}
.lang-switch button {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--bone); opacity: 0.55; padding: 9px 13px;
  transition: background 0.25s, opacity 0.25s;
}
.lang-switch button:hover { opacity: 1; }
.lang-switch button[aria-pressed="true"] { background: var(--ember); opacity: 1; }

/* event hero + details */
.event-flag {
  display: inline-block; background: var(--ember); color: var(--bone);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em;
  padding: 7px 14px; margin-bottom: 22px; text-transform: uppercase;
}
.chef-portrait {
  position: relative; float: right;
  width: min(320px, 40%); margin: 0 0 28px 32px;
  border: 1px solid var(--ash); border-radius: 5px; overflow: hidden;
  background: #1c1c1a;
}
.chef-portrait img { width: 100%; display: block; }
.chef-portrait.empty { aspect-ratio: 2/3; border-style: dashed; display: flex; align-items: center; justify-content: center; }
.chef-portrait.empty img { display: none; }
.chef-portrait.empty::after {
  content: "ΦΩΤΟ ΣΕΦ\A add: assets/img/christian-juergens.jpg";
  white-space: pre; text-align: center; padding: 0 14px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em;
  opacity: 0.45; line-height: 2;
}
.chef-portrait figcaption {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em;
  opacity: 0.5; padding: 10px 12px; text-transform: uppercase;
}
.event-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px,100%), 1fr));
  gap: 18px; margin: 5vh 0; clear: both;
}
.event-fact {
  border: 1px solid var(--ash); border-radius: 4px; background: #141413;
  padding: 20px 22px;
}
.event-fact span {
  display: block; font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.2em; color: var(--ember); margin-bottom: 8px; text-transform: uppercase;
}
.event-fact strong { font-family: var(--body); font-weight: 600; font-size: 1.05rem; line-height: 1.35; }
.event-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 5vh 0; clear: both; }
.event-gallery figure { border: 1px solid var(--ash); border-radius: 5px; overflow: hidden; }
.event-gallery img { width: 100%; height: 260px; object-fit: cover; display: block; }
.event-gallery figcaption {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em;
  opacity: 0.5; padding: 10px 12px; text-transform: uppercase;
}
.call-cta {
  border: 1px solid var(--ember); border-radius: 6px;
  background: radial-gradient(ellipse at 50% 130%, rgba(176,58,46,0.28), transparent);
  padding: clamp(28px, 4vw, 46px); text-align: center; margin: 7vh 0 2vh; clear: both;
}
.call-cta p { opacity: 0.85; margin-bottom: 18px; }
.call-phone {
  display: inline-block; font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3.2rem); color: var(--bone);
  letter-spacing: 0.01em; border-bottom: 3px solid var(--ember);
  padding-bottom: 6px; transition: color 0.3s;
}
.call-phone:hover { color: var(--ember); }
.call-alt { margin-top: 22px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.7; }

@media (max-width: 700px) {
  .chef-portrait { float: none; width: 100%; margin: 0 0 26px; }
  .event-gallery { grid-template-columns: 1fr; }
  .event-gallery img { height: 200px; }
}

/* language switch sits beside the burger so it survives the mobile breakpoint */
.nav-right { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }
@media (max-width: 860px) {
  .lang-switch button { padding: 8px 11px; font-size: 0.64rem; }
}
