/* =====================================================================
   ÁRKÁD ÉTTEREM ÉRD — Design rendszer
   Prémium, all-you-can-eat svédasztal · mobil-első · statikus
   Paletta: krém + mély paprika-bordó + réz-arany
   Tipográfia: Fraunces (display) × Be Vietnam Pro (törzs)
   Készítette: REELPIXELZ
   ===================================================================== */

/* ----------------------------- TOKENEK ----------------------------- */
:root {
  /* Alaptónusok */
  --bg:            #FBF6EE;
  --surface:       #FFFFFF;
  --cream:         #F3E9DA;
  --cream-deep:    #ECDFC9;
  --ink:           #241A15;
  --muted:         #6B5A4E;

  /* Márka */
  --primary:       #9E2B25;
  --primary-dark:  #74201C;
  --primary-tint:  #F6E4E1;
  --accent:        #C08A3E;
  --accent-dark:   #92611F;
  --wood:          #8A5A3B;

  /* Funkcionális */
  --success:       #2E7D4F;
  --warn:          #B8791F;
  --hairline:      #E4D6C4;
  --hairline-strong:#D2BFA6;
  --overlay:       rgba(28, 19, 14, .55);

  /* Tipográfia */
  --font-display:  "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:     "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-hero:   clamp(2.6rem, 6vw + 1rem, 5rem);
  --fs-h2:     clamp(1.9rem, 3.5vw + .6rem, 3rem);
  --fs-h3:     clamp(1.25rem, 1.4vw + .8rem, 1.6rem);
  --fs-lead:   clamp(1.08rem, .6vw + .95rem, 1.3rem);
  --fs-body:   clamp(1rem, .3vw + .92rem, 1.1rem);
  --fs-small:  clamp(.82rem, .2vw + .78rem, .9rem);
  --fs-eyebrow:.78rem;

  --lh-tight:  1.06;
  --lh-snug:   1.22;
  --lh-body:   1.66;
  --ls-eyebrow: .2em;
  --ls-display: -.015em;

  /* Térköz */
  --space-3xs: .25rem;
  --space-2xs: .5rem;
  --space-xs:  .75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --section-y: clamp(3.5rem, 8vw, 7rem);

  /* Radius */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-pill: 999px;

  /* Árnyékok (meleg tónus) */
  --shadow-sm:  0 1px 2px rgba(36,26,21,.06), 0 2px 6px rgba(36,26,21,.05);
  --shadow-md:  0 4px 12px rgba(36,26,21,.08), 0 12px 28px rgba(36,26,21,.07);
  --shadow-lg:  0 12px 32px rgba(36,26,21,.12), 0 28px 60px rgba(36,26,21,.10);
  --shadow-primary: 0 8px 24px rgba(158,43,37,.28);

  /* Layout */
  --container:    1180px;
  --container-narrow: 760px;
  --gutter:       clamp(1.1rem, 4vw, 2.5rem);
  --header-h:     74px;

  /* Mozgás */
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --ease-soft:  cubic-bezier(.4, 0, .2, 1);
  --dur-fast:   .18s;
  --dur-mid:    .35s;
  --dur-slow:   .6s;
}

/* ------------------------------ RESET ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: var(--lh-snug); letter-spacing: var(--ls-display); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------- UTILITIES ---------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--bg); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--accent-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: var(--space-lg); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head h2 { font-size: var(--fs-h2); margin-top: var(--space-xs); }
.lead { font-size: var(--fs-lead); color: var(--muted); margin-top: var(--space-sm); }
.display { font-size: var(--fs-hero); line-height: var(--lh-tight); font-weight: 600; }
.h1 { font-size: var(--fs-hero); line-height: var(--lh-tight); }

.stars { color: var(--accent); letter-spacing: .08em; }

/* Gombok */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; line-height: 1;
  border-radius: var(--r-pill); white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); padding: .85rem 1.6rem; }
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 10px 30px rgba(158,43,37,.36); transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--hairline-strong); padding: .8rem 1.5rem; }
.btn--secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-tint); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); padding: .85rem 1.6rem; }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--solid-light { background: #fff; color: var(--primary); padding: .85rem 1.6rem; box-shadow: var(--shadow-md); }
.btn--solid-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.06rem; }
.btn--sm { padding: .58rem 1.15rem; font-size: .9rem; }
.btn--block { width: 100%; }

/* "Most nyitva" badge */
.badge-open {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--fs-small); font-weight: 600;
  padding: .4rem .8rem; border-radius: var(--r-pill);
  background: rgba(46,125,79,.12); color: var(--success);
  border: 1px solid rgba(46,125,79,.25);
}
.badge-open .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); position: relative; flex: none; }
.badge-open .dot::after { content:""; position:absolute; inset:0; border-radius:50%; background: var(--success); animation: pulse 2.4s var(--ease-soft) infinite; }
.badge-open[data-state="closed"] { background: rgba(107,90,78,.12); color: var(--muted); border-color: rgba(107,90,78,.22); }
.badge-open[data-state="closed"] .dot { background: var(--muted); }
.badge-open[data-state="closed"] .dot::after { display: none; }
.badge-open[data-state="soon"] { background: rgba(184,121,31,.14); color: var(--warn); border-color: rgba(184,121,31,.3); }
.badge-open[data-state="soon"] .dot { background: var(--warn); }
.badge-open[data-state="soon"] .dot::after { background: var(--warn); }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(46,125,79,.5);} 70% { box-shadow: 0 0 0 9px rgba(46,125,79,0);} }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }

/* ----------------------------- HEADER ------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  transition: background var(--dur-mid), box-shadow var(--dur-mid), transform var(--dur-mid), border-color var(--dur-mid);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(251,246,238,.9);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--hairline);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); width: 100%; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 1.35rem;
  background: linear-gradient(150deg, var(--primary), var(--primary-dark));
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.14);
}
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1; color: var(--ink); display: flex; flex-direction: column; gap: 2px; }
.brand-text small { font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-dark); }
/* Hero-tetején, áttetsző headerben világos logó */
.site-header:not(.is-stuck) .brand-text { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.site-header:not(.is-stuck) .brand-text small { color: #F1D9A8; }

.nav ul { display: flex; gap: clamp(.5rem, 1.6vw, 1.5rem); align-items: center; }
.nav a { font-weight: 500; font-size: .96rem; padding: .4rem .2rem; position: relative; color: var(--ink); }
.nav a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--accent); transition: width var(--dur-mid) var(--ease-out); }
.nav a:hover::after { width: 100%; }
.site-header:not(.is-stuck) .nav a { color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.4); }

.header-cta { display: flex; align-items: center; gap: var(--space-sm); }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; font-weight: 700; font-size: .95rem; color: var(--ink); line-height: 1.15; }
.header-phone span { font-weight: 500; font-size: .68rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.site-header:not(.is-stuck) .header-phone { color: #fff; }
.site-header:not(.is-stuck) .header-phone span { color: rgba(255,255,255,.8); }

.header-tools { display: none; align-items: center; gap: .5rem; }
.icon-btn { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--ink); border: 1.5px solid var(--hairline-strong); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn--call { background: var(--primary); color: #fff; border-color: var(--primary); }
.site-header:not(.is-stuck) #menu-toggle { color: #fff; border-color: rgba(255,255,255,.5); }

/* Mobil menü overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  display: flex; flex-direction: column; padding: var(--gutter);
  transform: translateX(100%); transition: transform var(--dur-mid) var(--ease-out);
  visibility: hidden;
}
.mobile-nav.is-open { transform: none; visibility: visible; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-lg); }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav .m-link { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; padding: .7rem 0; border-bottom: 1px solid var(--hairline); display: block; }
.mobile-nav__cta { margin-top: auto; display: grid; gap: .7rem; padding-top: var(--space-lg); }

/* ------------------------------ HERO ------------------------------- */
.hero { position: relative; min-height: clamp(580px, 94svh, 860px); display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s var(--ease-soft) forwards; }
.hero::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28,19,14,.34) 0%, rgba(28,19,14,.46) 45%, rgba(28,19,14,.78) 100%); }
@keyframes heroZoom { from { transform: scale(1.06);} to { transform: scale(1);} }

.hero__inner { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 8vw, 5.5rem); max-width: 760px; }
.hero .display { margin-block: 1rem 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero .display em { font-style: italic; color: #F2D9A6; }
.hero__sub { font-size: var(--fs-lead); color: rgba(255,255,255,.92); max-width: 600px; text-shadow: 0 1px 16px rgba(0,0,0,.3); }
.hero .badge-open { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.34); backdrop-filter: blur(6px); }
.hero .badge-open .dot { background: #5ee08a; }
.hero .badge-open .dot::after { background: #5ee08a; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md); margin-top: var(--space-lg); font-size: var(--fs-small); color: rgba(255,255,255,.9); }
.hero__meta span { display: inline-flex; align-items: center; gap: .45em; }
.hero__meta svg { width: 16px; height: 16px; color: #F2D9A6; }
.scroll-cue { position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); color: rgba(255,255,255,.7); animation: bob 2.2s var(--ease-soft) infinite; }
.scroll-cue svg { width: 26px; height: 26px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 7px);} }

/* --------------------------- BIZALMI SÁV --------------------------- */
.trust { margin-top: calc(var(--space-xl) * -1); position: relative; z-index: 5; }
.trust__grid {
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  border: 1px solid var(--hairline);
}
.trust__item { display: flex; align-items: center; gap: .9rem; padding: 1.4rem 1.5rem; }
.trust__item + .trust__item { border-left: 1px solid var(--hairline); }
.ti-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--primary-tint); color: var(--primary); }
.ti-ic svg { width: 24px; height: 24px; }
.trust__item strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.15; }
.trust__item small { color: var(--muted); font-size: .82rem; }

/* ----------------------- AYCE KONCEPCIÓ SPLIT ---------------------- */
.concept-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.concept-steps { display: grid; gap: 1.1rem; margin-top: var(--space-md); }
.cstep { display: flex; gap: 1rem; align-items: flex-start; }
.cstep__num {
  width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  box-shadow: var(--shadow-primary);
}
.cstep h3 { font-size: 1.18rem; margin-bottom: 2px; }
.cstep p { color: var(--muted); font-size: .98rem; }
.concept-media { position: relative; }
.concept-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.concept-media .floater {
  position: absolute; left: -1.2rem; bottom: -1.2rem; background: var(--surface);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 1rem 1.2rem; border: 1px solid var(--hairline);
  display: flex; align-items: center; gap: .8rem; max-width: 70%;
}
.concept-media .floater .big { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--primary); line-height: 1; }
.concept-media .floater small { color: var(--muted); font-size: .8rem; }

/* ----------------------------- ÁRAK -------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); max-width: 820px; margin-inline: auto; }
.price-card {
  background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.3rem); border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md); position: relative; text-align: center;
}
.price-card.is-featured { border-color: var(--primary); box-shadow: 0 14px 40px rgba(158,43,37,.18); }
.price-card__tag { position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: var(--r-pill); }
.price-card h3 { font-size: 1.25rem; }
.price-card .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.2rem); color: var(--ink); line-height: 1; margin: .5rem 0 .1rem; }
.price-card .price span { font-size: .9rem; font-weight: 600; color: var(--muted); font-family: var(--font-body); }
.price-card .price .cur { font-size: 1.4rem; color: var(--primary); }
.price-card p { color: var(--muted); font-size: .92rem; }
.price-incl { display: grid; gap: .5rem; margin-top: 1.1rem; text-align: left; }
.price-incl li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.price-incl svg { width: 18px; height: 18px; color: var(--success); flex: none; }
.price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: var(--space-md); max-width: 620px; margin-inline: auto; }

/* ---------------------- SVÉDASZTAL (tabok) ------------------------- */
.tabs { margin-top: var(--space-lg); }
.tablist { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: var(--space-lg); }
.tab {
  font-weight: 600; font-size: .95rem; padding: .6rem 1.2rem; border-radius: var(--r-pill);
  background: var(--surface); color: var(--ink); border: 1px solid var(--hairline-strong);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab[aria-selected="true"] { background: var(--primary); color: #fff; border-color: var(--primary); }
.tabpanel { display: none; animation: fadeUp var(--dur-mid) var(--ease-out); }
.tabpanel.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: none;} }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(2rem, 5vw, 4rem); max-width: 940px; margin-inline: auto; }
.menu-item { display: flex; align-items: baseline; gap: .6rem; padding: .9rem 0; border-bottom: 1px solid var(--hairline); }
.menu-item__main { flex: 1; min-width: 0; }
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__name .tag-mini { font-size: .64rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .12rem .45rem; border-radius: var(--r-pill); margin-left: .4rem; vertical-align: middle; }
.tag-mini--veg { background: #e7f0e3; color: #3f6b34; }
.tag-mini--pop { background: var(--primary-tint); color: var(--primary); }
.tag-mini--sweet { background: #f6e8da; color: var(--accent-dark); }
.menu-item__desc { font-size: .86rem; color: var(--muted); margin-top: 2px; }
.menu-cat-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--r-md); margin-bottom: var(--space-md); box-shadow: var(--shadow-sm); }
.menu-note {
  display: flex; gap: .7rem; align-items: flex-start; max-width: 760px; margin: var(--space-lg) auto 0;
  background: var(--cream); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 1rem 1.2rem;
  font-size: .9rem; color: var(--muted);
}
.menu-note svg { width: 20px; height: 20px; color: var(--accent-dark); flex: none; margin-top: 1px; }

/* ----------------------------- GALÉRIA ----------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 1; }
.gallery__item.is-wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__item.is-tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery__item::after { content:""; position: absolute; inset: 0; background: var(--overlay); opacity: 0; transition: opacity var(--dur-mid); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: .35; }

/* ----------------------------- RÓLUNK ------------------------------ */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-copy p { margin-top: var(--space-sm); color: var(--muted); }
.about-copy h2 { font-size: var(--fs-h2); margin-top: var(--space-xs); }
.signature-name { margin-top: var(--space-md); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.signature-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--muted); }

/* Díjak sáv */
.awards { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }
.award {
  display: flex; align-items: center; gap: .7rem; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: .8rem 1.1rem; box-shadow: var(--shadow-sm);
}
.award svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.award strong { display: block; font-size: .95rem; }
.award small { color: var(--muted); font-size: .8rem; }

/* --------------------------- VÉLEMÉNYEK ---------------------------- */
.rating-summary { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); margin-bottom: var(--space-lg); }
.rating-chip { display: flex; align-items: center; gap: .7rem; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: .6rem 1.2rem; box-shadow: var(--shadow-sm); }
.rating-chip .num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.rating-chip small { color: var(--muted); font-size: .8rem; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.review { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: var(--space-md); box-shadow: var(--shadow-md); position: relative; }
.review .quote-mark { font-family: var(--font-display); font-size: 3.5rem; line-height: .6; color: var(--primary-tint); position: absolute; top: 1rem; right: 1.1rem; }
.review .stars { font-size: 1rem; }
.review blockquote { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; color: var(--ink); margin: .7rem 0 1rem; }
.review__who { display: flex; align-items: center; gap: .7rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--accent), var(--accent-dark)); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.review__who strong { display: block; font-size: .95rem; }
.review__who small { color: var(--muted); font-size: .8rem; }
.reviews-cta { text-align: center; margin-top: var(--space-lg); }

/* --------------------- NYITVATARTÁS + TÉRKÉP ----------------------- */
.loc-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.map-facade { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 360px; cursor: pointer; box-shadow: var(--shadow-md); }
.map-facade img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.map-facade__overlay { position: absolute; inset: 0; background: var(--overlay); display: grid; place-content: center; justify-items: center; gap: .6rem; color: #fff; transition: background var(--dur-mid); }
.map-facade:hover .map-facade__overlay { background: rgba(28,19,14,.42); }
.map-facade .pin { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; box-shadow: var(--shadow-lg); }
.map-facade .pin svg { width: 28px; height: 28px; color: #fff; }
.map-facade iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

.loc-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-md); }
.loc-list { display: grid; gap: 1rem; }
.loc-row { display: flex; gap: .85rem; align-items: flex-start; }
.lr-ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; }
.lr-ic svg { width: 21px; height: 21px; }
.loc-row strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; }
.loc-row a, .loc-row span.val { font-weight: 600; color: var(--ink); }
.loc-row a:hover { color: var(--primary); }
.loc-row small { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; }
.hours { margin-top: var(--space-md); border-top: 1px solid var(--hairline); padding-top: var(--space-md); }
.hours__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.hours__head h3 { font-size: 1.15rem; }
.hours table { width: 100%; border-collapse: collapse; }
.hours td { padding: .45rem 0; font-size: .95rem; border-bottom: 1px solid var(--hairline); }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours tr.is-today td { color: var(--primary); font-weight: 700; }
.hours tr.is-today td:first-child { position: relative; padding-left: .8rem; }
.hours tr.is-today td:first-child::before { content:""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 60%; background: var(--primary); border-radius: 2px; }
.loc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: var(--space-md); }

/* ----------------------------- ZÁRÓ CTA ---------------------------- */
.final-cta { position: relative; color: #fff; text-align: center; isolation: isolate; overflow: hidden; }
.final-cta__media { position: absolute; inset: 0; z-index: -2; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(116,32,28,.86), rgba(28,19,14,.9)); }
.final-cta .container { max-width: 720px; }
.final-cta h2 { margin: .6rem 0 1rem; }
.final-cta p { color: rgba(255,255,255,.9); font-size: var(--fs-lead); }
.final-cta .cta-row { justify-content: center; }
.final-cta .eyebrow { color: #F2D9A6; }
.final-cta .eyebrow::before { background: #F2D9A6; }

/* ------------------------------ FOOTER ----------------------------- */
.site-footer { background: var(--ink); color: rgba(251,246,238,.82); padding-block: var(--space-xl) var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-lg); }
.footer-brand .brand-text { color: #fff; }
.footer-brand p { margin-top: var(--space-sm); max-width: 36ch; font-size: .92rem; }
.footer-social { display: flex; gap: .6rem; margin-top: var(--space-md); }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background var(--dur-fast); }
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: var(--space-sm); }
.footer-col ul { display: grid; gap: .5rem; font-size: .92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(251,246,238,.6); }
.footer-bottom a { color: var(--accent); }

/* ------------------------- STICKY HÍVÓSÁV -------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--hairline);
  box-shadow: 0 -6px 20px rgba(36,26,21,.14); padding-bottom: env(safe-area-inset-bottom);
}
.callbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: .6rem; background: var(--surface); font-size: .74rem; font-weight: 600; }
.callbar a svg { width: 20px; height: 20px; }
.callbar .cb-call { background: var(--primary); color: #fff; }
.callbar .cb-book { color: var(--ink); }
.callbar .cb-route { color: var(--ink); }

/* ----------------------------- LIGHTBOX ---------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15,10,7,.92); display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); animation: lbIn var(--dur-mid) var(--ease-out); }
@keyframes lbIn { from { opacity: 0; transform: scale(.96);} to { opacity: 1; transform: none;} }
.lightbox__btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background var(--dur-fast); }
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ----------------------------- REVEAL ------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* --------------------------- RESPONSIVE ---------------------------- */
@media (max-width: 980px) {
  .nav, .header-phone, .header-cta .btn { display: none; }
  .header-tools { display: flex; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: none; }
  .trust__item:nth-child(odd) { border-left: none; }
  .trust__item:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .concept-grid, .about-grid, .loc-grid { grid-template-columns: 1fr; }
  .concept-media { order: -1; }
  .about-media { order: -1; }
  .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.is-wide { grid-column: span 2; }
  .gallery__item.is-tall { grid-row: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .callbar { display: grid; }
  body { padding-bottom: 64px; }
}
@media (max-width: 620px) {
  .menu-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-left: none !important; }
  .trust__item + .trust__item { border-top: 1px solid var(--hairline); }
  .loc-actions { grid-template-columns: 1fr; }
  .concept-media .floater { position: static; max-width: none; margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* --------------------- REDUCED MOTION FALLBACK --------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__media img { animation: none; }
}
