/* =========================================================
   Főnix Restaurant — Komárno
   Design system: warm charcoal, stone, oxblood, copper
   ========================================================= */

:root {
  --ink:        #141110;
  --ink-2:      #1A1513;
  --panel:      #211A17;
  --panel-2:    #271F1B;

  --bone:       #F3EEE6;
  --stone:      #D7CDBE;
  --muted:      #B2A797;

  --oxblood:    #7A2A2E;
  --oxblood-d:  #4A1A1E;
  --wine-band:  #3A171C;

  --copper:     #C09A66;
  --copper-lt:  #DBBC8B;

  --line:       rgba(192,154,102,.22);
  --line-soft:  rgba(239,233,223,.10);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

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

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.075rem;
  color: var(--bone);
  background: var(--ink);
  line-height: 1.72;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .005em; }
.serif { font-family: var(--serif); }

.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--copper-lt);
}
.kicker--center { display: block; text-align: center; }

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  color: var(--bone);
  margin-top: .35em;
}
.lead {
  font-size: clamp(1.18rem, 1.8vw, 1.36rem);
  color: var(--stone);
  font-weight: 400;
  line-height: 1.65;
  max-width: 60ch;
}
.muted { color: var(--muted); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
/* Szélesebb sáv ott, ahol a rács nagyobb léptéket kíván (gasztró kártyák). */
.wrap--wide { max-width: var(--maxw-wide); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }

.divider-line {
  width: 64px; height: 1px; background: var(--copper);
  opacity: .8; margin: 26px 0;
}
.center .divider-line { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--sans); font-weight: 400;
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 1.05em 2.1em; border: 1px solid var(--copper);
  color: var(--bone); background: transparent;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.btn:hover { background: var(--copper); color: var(--ink); }
.btn--solid { background: var(--oxblood); border-color: var(--oxblood); }
.btn--solid:hover { background: var(--copper); border-color: var(--copper); color: var(--ink); }
.btn--ghost { border-color: var(--line); }
.btn--ghost:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding-block: 22px;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(18,15,14,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 13px;
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.wordmark { display: block; line-height: 0; }
.wordmark img {
  display: block; width: auto; height: clamp(21px, 2.4vw, 27px);
  /* a kettős vessző a betűk fölé nyúlik: optikai igazítás */
  margin-block: calc(-1 * clamp(21px, 2.4vw, 27px) * .07);
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav__link {
  font-size: .86rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); font-weight: 500; position: relative; padding-block: 4px;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--copper); transition: width .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--bone); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { margin-left: 6px; }
.nav__cta.btn { padding: .75em 1.5em; font-size: .72rem; }

.nav-toggle { display: none; width: 30px; height: 22px; position: relative; z-index: 70; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--bone); transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 18px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 90px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,15,14,.62) 0%, rgba(18,15,14,.34) 32%, rgba(18,15,14,.74) 78%, var(--ink) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(18,15,14,.10), rgba(18,15,14,.66));
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__title { margin: clamp(14px, 2.2vw, 26px) 0 clamp(10px, 1.6vw, 18px); line-height: 0; }
.hero__title img {
  display: block; width: min(100%, clamp(280px, 46vw, 560px)); height: auto;
}
.hero__tag {
  font-family: var(--sans); font-weight: 300; color: var(--copper-lt);
  font-size: clamp(.82rem, 1.4vw, 1rem); letter-spacing: .34em;
  text-transform: uppercase; margin-top: .5rem;
}
.hero__tag b { color: var(--bone); font-weight: 500; }
.hero__sub { margin-top: 1.4rem; max-width: 48ch; color: var(--bone); font-size: clamp(1.08rem, 1.7vw, 1.22rem); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2.4rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--copper), transparent); display: block; animation: scrolltick 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrolltick { 0%{ transform: scaleY(0); } 40%{ transform: scaleY(1);} 100%{ transform: scaleY(0); transform-origin: bottom;} }

/* =========================================================
   FALSTAFF STRIP
   ========================================================= */
.falstaff {
  background: var(--ink-2); border-block: 1px solid var(--line);
}
.falstaff__inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: clamp(20px, 5vw, 70px); text-align: center;
}
.falstaff__crest { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.falstaff__crest .fs-name {
  font-family: var(--serif); font-weight: 500; color: var(--bone);
  font-size: clamp(2.5rem, 6vw, 3.9rem); letter-spacing: .01em; line-height: 1;
}
.falstaff__crest .fs-sub { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-lt); font-weight: 500; }
.falstaff__forks {
  display: flex; align-items: flex-end; gap: clamp(11px, 1.6vw, 18px);
  color: var(--copper); margin-top: clamp(12px, 2vw, 20px);
}
.fs-fork {
  height: clamp(60px, 9vw, 96px); width: auto; display: block; fill: currentColor;
  filter: drop-shadow(0 2px 10px rgba(192,154,102,.28));
}
.fs-forks-cap { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.falstaff__facts { display: flex; flex-direction: column; align-items: center; gap: clamp(16px, 2.4vw, 24px); }
.falstaff__score { display: flex; align-items: baseline; gap: .4em; }
.falstaff__score b { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 3.6rem); color: var(--copper); line-height: 1; }
.falstaff__score span { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); }
.falstaff__breakdown { display: flex; gap: clamp(14px, 2.4vw, 34px); flex-wrap: wrap; justify-content: center; }
.falstaff__breakdown li { display: flex; flex-direction: column; gap: 2px; }
.falstaff__breakdown b { font-family: var(--serif); font-size: 1.45rem; color: var(--bone); }
.falstaff__breakdown span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.falstaff__gm { display: flex; align-items: center; }
.falstaff__gm img { width: clamp(120px, 14vw, 168px); height: auto; display: block; }

/* =========================================================
   STORY
   ========================================================= */
.story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story__media .frame {
  position: absolute; inset: 16px; border: 1px solid var(--copper); opacity: .5; pointer-events: none;
  mix-blend-mode: screen;
}
.story__body p + p { margin-top: 1.1rem; }
.story__sign { margin-top: 1.8rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--copper); }

/* =========================================================
   GASTRO
   ========================================================= */
.gastro { background: var(--ink-2); }
.gastro__head { max-width: 720px; margin-inline: auto; }
.gastro__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); margin-top: clamp(36px, 5vw, 60px); }
.gastro__card { position: relative; overflow: hidden; }
/* A gasztró fotók ÁLLÓK (1200x1600, ill. a somlói 1389x1600) — az EXIF
   Orientation tagjuket az optimize-images.py forgatja bele a pixelekbe.
   A kártya ezért 3:4, így a két 1200x1600-as vágás nélkül fér be, és a
   szekció visszakapja a korábbi, nagyobb léptékét. */
.gastro__card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 1.1s var(--ease); }
.gastro__card:hover img { transform: scale(1.06); }
.gastro__card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 22px 22px;
  background: linear-gradient(to top, rgba(12,10,9,.94) 0%, rgba(12,10,9,.82) 34%, rgba(12,10,9,.42) 68%, transparent 100%);
  padding-top: 20%;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.25;
  color: var(--bone); text-shadow: 0 1px 12px rgba(0,0,0,.7);
}
.gastro__card figcaption small { display: block; text-shadow: none; font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-lt); font-weight: 500; margin-bottom: 4px; }

/* =========================================================
   MENU / ÉTLAP (accordion)
   ========================================================= */
.menu__line {
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--bone); letter-spacing: .01em; margin: 0; padding: 2px 0 6px;
}
.menu__list { max-width: 880px; margin: clamp(34px,5vw,56px) auto 0; border-top: 1px solid var(--line); }
.menu__cat { border-bottom: 1px solid var(--line); }
.menu__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(20px, 2.6vw, 30px) 4px; text-align: left;
}
.menu__head h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--bone); transition: color .3s var(--ease); }
.menu__head:hover h3 { color: var(--copper); }
.menu__head .idx { font-family: var(--sans); font-size: .8rem; letter-spacing: .18em; color: var(--copper-lt); font-weight: 500; margin-right: auto; padding-left: 1.2rem; align-self: center; }
.menu__plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.menu__plus::before, .menu__plus::after { content:""; position: absolute; background: var(--copper); transition: transform .4s var(--ease), opacity .4s var(--ease); }
.menu__plus::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.menu__plus::after  { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.menu__cat.is-open .menu__plus::after { transform: translateX(-50%) scaleY(0); }

.menu__panel { overflow: hidden; height: 0; transition: height .5s var(--ease); }
.menu__panel-inner { padding: 4px 4px 30px; }
.menu__head h3 small {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper-lt); margin-top: 6px;
}
/* étlap oldalak képként (a nyomdai PDF oldalai) */
.menu__pages { margin: 10px auto 4px; max-width: 880px; }
.menu__page {
  display: block; position: relative; cursor: zoom-in;
  overflow: hidden; background: #fff;
}
.menu__page img { display: block; width: 100%; height: auto; }
.menu__page::after {
  content: ""; position: absolute; inset: 0; border: 1px solid transparent;
  transition: border-color .4s var(--ease); pointer-events: none;
}
.menu__page:hover::after { border-color: rgba(192,154,102,.55); }
.menu__zoom {
  position: absolute; right: 12px; bottom: 12px;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bone); background: rgba(20,17,16,.8); padding: 7px 13px;
  opacity: 0; transition: opacity .35s var(--ease);
}
.menu__page:hover .menu__zoom { opacity: 1; }
.menu__line--foot {
  text-align: center; font-family: var(--sans); font-size: .92rem;
  color: var(--stone); letter-spacing: .04em; margin-top: clamp(22px, 3vw, 32px);
}
.menu__note { max-width: 880px; margin: 26px auto 0; font-size: .96rem; color: var(--muted); text-align: center; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid {
  margin-top: clamp(34px,5vw,56px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery__item { position: relative; overflow: hidden; cursor: pointer; display: block; }
.gallery__item img {
  width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform 1s var(--ease), filter .6s var(--ease); filter: saturate(.96) brightness(.96);
}
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1.04); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; border: 1px solid transparent;
  transition: border-color .4s var(--ease); pointer-events: none;
}
.gallery__item:hover::after { border-color: rgba(192,154,102,.55); }
.gallery__grid.is-collapsed .gallery__item:nth-child(n+10) { display: none; }
.gallery__more { margin-top: clamp(26px,4vw,40px); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,8,7,.94);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.6); }
/* magas étlapoldal: teljes szélességben, görgethetően */
.lightbox.is-doc { overflow-y: auto; align-items: flex-start; padding: 56px 16px; }
.lightbox.is-doc img { max-height: none; width: min(860px, 100%); height: auto; object-fit: initial; }
.lightbox.is-doc .lightbox__nav { position: fixed; }
.lightbox.is-doc .lightbox__close { position: fixed; }
.lightbox__close { position: absolute; top: 24px; right: 30px; font-size: 2rem; color: var(--bone); line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; color: var(--stone); padding: 20px; transition: color .3s; }
.lightbox__nav:hover { color: var(--copper); }
.lightbox__nav.prev { left: 10px; } .lightbox__nav.next { right: 10px; }

/* =========================================================
   RESERVATION
   ========================================================= */
.reserve { background: var(--ink-2); position: relative; }
.reserve__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.reserve__aside p { margin-top: 1rem; }
.reserve__contacts { margin-top: 2rem; display: grid; gap: 1rem; }
.reserve__contacts a, .reserve__contacts div { display: flex; gap: 12px; align-items: baseline; color: var(--bone); font-size: 1.05rem; }
.reserve__contacts .lab { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-lt); font-weight: 500; min-width: 90px; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--copper-lt); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-weight: 400; font-size: 1.05rem; color: var(--bone);
  background: var(--panel); border: 1px solid var(--line); padding: 14px 16px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); background: var(--panel-2); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--copper) 50%), linear-gradient(135deg, var(--copper) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 110px; }
.form__submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.form__msg { font-size: .9rem; color: var(--copper); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: stretch; }
.contact__info { display: grid; gap: 30px; align-content: start; }
.contact__block .lab { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-lt); font-weight: 500; display: block; margin-bottom: 10px; }
.contact__block p, .contact__block a { color: var(--bone); font-size: 1.06rem; }
.hours { display: grid; gap: 6px; }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line-soft); padding-bottom: 6px; }
.hours__row span:first-child { color: var(--bone); }
.hours__row span:last-child { text-align: right; }
.hours__row span:last-child i { display: block; font-style: normal; }
.hours__row.closed span:last-child { color: var(--oxblood); }
.hours__row.closed span:last-child { color: #b06a6e; }
.contact__map { min-height: 320px; border: 1px solid var(--line); filter: grayscale(1) contrast(.92) brightness(.85); transition: filter .6s var(--ease); }
.contact__map:hover { filter: grayscale(.2) contrast(1) brightness(1); }
.contact__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-block: clamp(48px, 7vw, 80px) 30px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer__brand .wordmark img { height: clamp(26px, 3vw, 34px); margin-block: -2px; }
.footer__brand p { color: var(--stone); margin-top: 12px; max-width: 34ch; font-size: 1rem; }
.footer__links { display: flex; gap: clamp(30px, 5vw, 70px); flex-wrap: wrap; }
.footer__col h4 { font-family: var(--sans); font-weight: 500; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-lt); margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; color: var(--stone); font-size: 1rem; margin-bottom: 9px; transition: color .3s; }
.footer__col a:hover { color: var(--bone); }
.footer__bottom { margin-top: clamp(40px, 6vw, 64px); padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; color: var(--stone); letter-spacing: .03em; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .story__grid, .reserve__grid, .contact__grid { grid-template-columns: 1fr; }
  .story__media img { aspect-ratio: 16/11; }
  .gastro__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid.is-collapsed .gallery__item:nth-child(n+7) { display: none; }
  .reserve__aside { order: 2; }
}

@media (max-width: 720px) {
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 30px;
    background: rgba(18,15,14,.97); backdrop-filter: blur(10px);
    transform: translateY(-100%); opacity: 0; transition: transform .55s var(--ease), opacity .4s var(--ease); }
  body.nav-open .nav { transform: none; opacity: 1; }
  .nav__link { font-size: 1.1rem; letter-spacing: .2em; }
  .nav__cta.btn { font-size: .82rem; padding: 1em 2em; }
  .nav-toggle { display: block; }
  .form { grid-template-columns: 1fr; }
  .gastro__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery__grid.is-collapsed .gallery__item:nth-child(n+5) { display: none; }
  .falstaff__breakdown { gap: 16px 22px; }
  .footer__top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scroll i { animation: none; }
}

/* =========================================================
   NYELVVÁLTÓ
   ========================================================= */
.langs { display: flex; align-items: center; gap: 0; margin-left: 4px; }
.langs__item {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone); padding: 0 .55em; line-height: 1;
  transition: color .3s var(--ease);
}
.langs__item + .langs__item { border-left: 1px solid rgba(255,255,255,.16); }
.langs__item:hover { color: var(--bone); }
.langs__item.is-active { color: var(--copper); font-weight: 500; }

/* A <picture> ne törje meg a flex/grid elrendezést: úgy viselkedjen,
   mintha ott sem lenne, és az <img> maradjon a közvetlen gyerek. */
picture { display: contents; }

@media (max-width: 720px) {
  .langs { margin: 4px 0 0; gap: 0; }
  .langs__item { font-size: .92rem; letter-spacing: .2em; padding: 0 .8em; }
}

/* Csak képernyőolvasónak és keresőnek látható szöveg. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
