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

:root {
  --black:   #1a1816;
  --charcoal:#272523;
  --gold:    #c9a84c;
  --text:    #d4cbbf;
  --white:   #fafaf5;
  --card:    #1f1d1b;
  --card2:   #2e2b28;
  --border:  rgba(201,168,76,0.18);
  --radius:  6px;
}

html {
  scroll-behavior: smooth;
  /* A fix navbar ne takarja el a horgonyra ugráskor a szekciócímet */
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  /* iOS: ne villanjon szürke doboz minden érintésre */
  -webkit-tap-highlight-color: rgba(201,168,76,0.15);
}

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

/* ─── FÓKUSZ (billentyűzetes navigáció) ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translate(-50%, 0); }
strong { font-weight: 700; color: var(--white); }
em { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-gold { color: var(--gold); }

/* ─── NOISE TEXTURE ─── */
.noise { position: relative; }
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.noise > * { position: relative; z-index: 1; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  background: rgba(26,24,22,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(26,24,22,0.98); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #dab85a; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  padding: 13px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--gold); }
.mob-link:last-child { border-bottom: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: #dab85a; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,168,76,0.5);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }

/* Telefonos CTA – kitöltött arany keret, hogy elváljon a másodlagos gomboktól */
.btn-call {
  gap: 9px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-color: var(--gold);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.btn-call:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-call-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Hívás sor a mobilmenüben */
.mob-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.mob-call svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section { padding: 96px 0; }
.section-black   { background: var(--black); }
.section-charcoal{ background: var(--charcoal); }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Pirata One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 32px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--black);
  min-height: 100vh;
  /* iOS Safari: a 100vh a címsáv mögé lóg — az svh a ténylegesen látható magasság */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}
/* Meleg fény a kompozíció mögött */
.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(1200px, 130vw);
  height: min(760px, 85vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
              rgba(201,168,76,0.16) 0%,
              rgba(201,168,76,0.05) 42%,
              transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ── Színpad: SMASHED felirat + előtte a burger ── */
/* A --burger-w-ből számoljuk a burger alsó túlnyúlását,
   így a hely alatta minden méretnél pontosan kijön. */
.hero-stage {
  --burger-w: clamp(200px, 30vw, 420px);
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: calc(var(--burger-w) * 0.268 + 10px);
}

.hero-word-wrap {
  position: relative;
  display: inline-block;
}

.hero-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 18vw, 13.8rem);
  line-height: 0.82;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 60px rgba(201,168,76,0.18);
}

.hero-burger-wrap {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -42%);
  width: var(--burger-w);
  z-index: 2;
  pointer-events: none;
}
.hero-burger-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.7));
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 520px;
}
.hero-city {
  color: var(--gold);
  font-style: italic;
  transition: color 0.2s;
}
.hero-city:hover { color: #dab85a; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.03em;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
  opacity: 0.7;
}

/* Alacsony asztali képernyő (pl. 1280×720 laptop) – kompaktabb hero */
@media (min-width: 769px) and (max-height: 800px) {
  .hero-stage { --burger-w: clamp(200px, 25vw, 355px); }
  .hero-wordmark { font-size: clamp(3.4rem, 15vw, 11rem); }
  .hero-sub { margin-bottom: 20px; }
  .hero-actions { margin-bottom: 24px; }
  .hero-stats { padding-top: 16px; }
}

/* ─── HERO ENTRANCE ANIMATIONS ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroBurgerIn {
  from { opacity: 0; transform: translateY(70px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: rotate(-6deg) translateY(12px); }
  to   { opacity: 1; transform: rotate(-6deg) translateY(0); }
}

.hero-eyebrow    { animation: heroFadeUp 0.6s ease both; }
.hero-wordmark   { animation: heroFadeUp 0.65s ease both; animation-delay: 0.15s; }
.hero-tagline    { animation: heroFadeUp 0.6s ease both;  animation-delay: 0.36s; }
.hero-sub        { animation: heroFadeUp 0.6s ease both;  animation-delay: 0.44s; }
.hero-actions    { animation: heroFadeUp 0.6s ease both;  animation-delay: 0.52s; }
.hero-stats      { animation: heroFadeUp 0.6s ease both;  animation-delay: 0.60s; }
.hero-burger-img { animation: heroBurgerIn 1.5s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.25s; }
.hero-badge      { animation: heroBadgeIn 0.55s ease both; animation-delay: 0.75s; }

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-wordmark, .hero-tagline, .hero-sub,
  .hero-actions, .hero-stats, .hero-burger-img, .hero-badge {
    animation: none;
  }
}

/* Arany "matrica" badge a színpad sarkában */
.hero-badge {
  position: absolute;
  right: 0;
  bottom: 8%;
  z-index: 3;
  transform: rotate(-6deg);
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 9px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.hero-scroll {
  text-align: center;
  padding: 12px 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.scroll-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text);
  opacity: 0.6;   /* WCAG AA: 4.6:1 */
}
.scroll-arrow {
  color: var(--text);
  opacity: 0.6;
  font-size: 0.8rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ─── RÓLUNK ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.about-text p:last-of-type { margin-bottom: 0; }
.about-text a { color: var(--gold); transition: color 0.2s; }
.about-text a:hover { color: #dab85a; }
.about-text strong { color: var(--white); }

.about-signature {
  margin-top: 28px;
  font-family: 'Pirata One', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.85rem; color: var(--text); line-height: 1.55; }

/* ─── ÉTLAP ─── */
.menu-note {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.65;
  text-align: center;
  margin-bottom: 40px;
}

.tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-list {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text);
  opacity: 0.6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 20px 14px;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.tab:hover { opacity: 0.9; color: var(--text); }
.tab.active {
  color: var(--gold);
  opacity: 1;
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.menu-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.menu-card:hover { border-color: rgba(201,168,76,0.2); }

.featured-card {
  border-color: rgba(201,168,76,0.25);
  background: linear-gradient(135deg, #1f1d1b 0%, #252210 100%);
}

.featured-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  display: inline-block;
  margin: 14px 0 0 16px;
  border-radius: 3px;
}

.menu-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 16px;
}

.featured-card .menu-card-body { padding-top: 10px; }

.menu-card-info { flex: 1; min-width: 0; }
.menu-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 5px;
}
.featured-card .menu-card-name {
  font-family: 'Pirata One', cursive;
  font-size: 1.4rem;
  color: var(--gold);
}
.menu-card-desc {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.65;
  line-height: 1.5;
  margin-bottom: 6px;
}
.menu-card-weight {
  font-size: 0.72rem;
  color: var(--text);
  opacity: 0.6;   /* WCAG AA: 4.6:1 */
}

.menu-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.price-ron {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.62;   /* WCAG AA */
}

/* ─── KÖZÖSSÉG ─── */
.community-top {
  text-align: center;
  margin-bottom: 48px;
}
.community-badge {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.community-top .section-eyebrow { margin-bottom: 8px; }

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.social-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.25s;
}
.social-card:hover { border-color: var(--border); }

.social-header { display: flex; flex-direction: column; gap: 10px; }

.social-follow-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
  opacity: 0.62;   /* WCAG AA */
}

.social-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0;
}
.social-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.social-platform-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.social-handle {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}
.handle-sep { margin: 0 6px; opacity: 0.62; }

.social-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text);
  opacity: 0.7;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s, color 0.2s;
}
.social-link:hover { color: #dab85a; gap: 12px; }
.arrow { transition: transform 0.2s; }
.social-link:hover .arrow { transform: translateX(3px); }

.community-tagline {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 20px;
}

.community-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  opacity: 0.68;   /* WCAG AA */
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 18px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}
.social-pill:hover { color: var(--gold); border-color: var(--border); opacity: 1; }

/* ─── VÉLEMÉNYEK ─── */
.reviews-top { text-align: center; }
.reviews-lead {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.8;
  max-width: 620px;
  margin: 0 auto 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.review-card {
  position: relative;
  margin: 0;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: var(--border); }
/* Dekoratív idézőjel */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 2px;
  right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  pointer-events: none;
}

.review-stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 3px;
  line-height: 1;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

/* Román nézetben megjelenő, jelölt fordítás. Magyarul üres → elrejtve. */
.review-translated {
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.6;   /* WCAG AA: 4.6:1 */
  border-left: 2px solid rgba(201,168,76,0.28);
  padding-left: 11px;
}
.review-translated:empty { display: none; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card2);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.reviewer-info { display: flex; flex-direction: column; }
.reviewer-name {
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  color: var(--white);
}
.reviewer-source { font-size: 0.75rem; color: var(--text); opacity: 0.6; }  /* WCAG AA */

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.footer-desc {
  font-size: 0.86rem;
  color: var(--text);
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}
.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--card2);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-icon:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
/* Ugyanaz a vizuális nyelv, mint a Rólunk szekció .feature-icon dobozánál,
   csak kisebb méretben — arany, telített ikon halvány arany háttéren. */
.fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  flex-shrink: 0;
}
.fc-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}
.fc-main { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.fc-sub  { font-size: 0.82rem; color: var(--text); opacity: 0.65; }

/* Kattintható kapcsolat-elemek (telefon, e-mail, térkép) */
a.fc-main, .fc-link {
  display: inline-block;
  transition: color 0.2s;
  word-break: break-word;
}
a.fc-main:hover, .fc-link:hover { color: var(--gold); }
.fc-link {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 4px;
}
.fc-phone { font-size: 0.95rem !important; font-weight: 600; color: var(--white) !important; }
.fc-phone:hover { color: var(--gold) !important; }
.fc-muted { font-style: italic; opacity: 0.45 !important; font-size: 0.78rem !important; }

.hours-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.84rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text); opacity: 0.75; }
.hours-time { color: var(--white); font-weight: 500; }
.hours-time.closed { color: #e05555; font-weight: 600; }

.hours-note {
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.6;   /* WCAG AA: 4.6:1 */
  font-style: italic;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(212,203,191,0.5);
}

/* ─── FOOTER LEGAL ─── */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 2rem 0.75rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-legal-company {
  font-size: 0.68rem;
  color: rgba(212,203,191,0.38);
  line-height: 1.9;
  margin-bottom: 0.45rem;
}
.legal-ph {
  color: rgba(201,168,76,0.5);
  font-style: italic;
}
.footer-legal-links {
  font-size: 0.68rem;
  color: rgba(212,203,191,0.38);
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.45rem;
  justify-content: center;
  align-items: center;
}
.footer-legal-links a,
.legal-link-btn {
  color: rgba(212,203,191,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover,
.legal-link-btn:hover { color: var(--gold); }
.lsep { color: rgba(255,255,255,0.18); }

/* A jogi modált nyitó elemek gombok (nem üres href-ű linkek) */
.legal-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.68rem;
  cursor: pointer;
  line-height: inherit;
}

/* ─── COOKIE BAR ─── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,18,16,0.97);
  border-top: 1px solid rgba(201,168,76,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  color: rgba(212,203,191,0.65);
  z-index: 9800;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  flex-wrap: wrap;
  text-align: center;
}
.cookie-bar.visible { transform: none; }
.cookie-bar p { margin: 0; flex: 1 1 auto; min-width: 200px; }
.cookie-bar button {
  background: var(--gold);
  color: #0e0d0c;
  border: none;
  border-radius: 6px;
  padding: 0.32rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.cookie-bar button:hover { opacity: 0.85; }

/* ─── JOGI MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9901;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.legal-modal.open { opacity: 1; pointer-events: all; }

.legal-modal-box {
  background: #1e1c1a;
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.85rem; right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }
.modal-content h2 {
  color: var(--gold);
  font-size: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.modal-content .modal-updated {
  font-size: 0.7rem;
  color: rgba(212,203,191,0.38);
  margin-bottom: 1.2rem;
}
.modal-content h3 {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 1.1rem 0 0.35rem;
}
.modal-content p, .modal-content li {
  color: rgba(212,203,191,0.62);
  font-size: 0.82rem;
  line-height: 1.75;
}
.modal-content ul { padding-left: 1.2rem; margin: 0.3rem 0; }
.modal-content code {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.78rem;
  font-family: monospace;
}
.modal-content a { color: var(--gold); }
.modal-content .legal-operator-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  margin: 0.45rem 0 1rem;
  font-size: 0.8rem;
  color: rgba(212,203,191,0.58);
  line-height: 1.8;
}

/* ─── SCROLL REVEAL ─── */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.reveal-item.revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; transition: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  /* Hero – a badge a burger alá kerül, nem melléje */
  .hero-stage {
    flex-direction: column;
    align-items: center;
    padding-bottom: 12px;
  }
  .hero-badge {
    position: static;
    transform: none;
    margin-top: calc(var(--burger-w) * 0.28 + 12px);
    box-shadow: none;
  }
  @keyframes heroBadgeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* A teljes desktop navigáció 901px-et igényel (márka + 4 link + nyelvváltó +
   CTA + 3×48px gap). E fölött vízszintesen kilógna, ezért itt már hamburger. */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .lang-switch { margin-right: 0; margin-left: auto; }
}

@media (max-width: 768px) {
  /* Navbar – a maradék hely is fogy, tovább tömörítünk */
  .nav-inner { gap: 10px; padding: 0 16px; }
  .nav-brand { min-width: 0; }
  .nav-brand-name { font-size: 1.3rem; }

  /* Base */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 2.4rem; text-align: center; }
  .section-eyebrow { display: block; text-align: center; }

  /* Hero – középre igazított, egyoszlopos */
  .hero { padding-top: 80px; justify-content: center; }
  .hero-inner { padding-top: 16px; padding-bottom: 8px; }

  .hero-stage { --burger-w: clamp(185px, 53vw, 275px); }
  .hero-wordmark { font-size: clamp(3rem, 23vw, 6rem); }

  .hero-tagline { font-size: clamp(1.35rem, 6vw, 1.9rem); }
  .hero-sub { max-width: 100%; font-size: 0.95rem; margin-bottom: 26px; }

  /* Két gomb egy sorban; szűk kijelzőn a hívás gomb alá törik */
  .hero-actions { margin-bottom: 28px; }
  .hero-actions .btn { padding: 13px 20px; }
  .hero-actions .btn-call { gap: 8px; }
  .hero-stats {
    gap: 24px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .stat-item { align-items: center; }

  .hero-badge {
    font-size: 0.6rem;
    padding: 7px 14px;
  }

  /* Rólunk */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-text { text-align: center; }
  .about-text p { font-size: 0.93rem; }
  .about-signature { text-align: center; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { text-align: center; padding: 20px 16px; }

  /* Étlap – a fülsáv vízszintesen görgethető, a szélek ne vágjanak */
  .menu-note { font-size: 0.82rem; padding: 0 8px; }
  .tabs-wrap {
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .tabs-wrap::-webkit-scrollbar { display: none; }
  .tab-list { gap: 2px; min-width: max-content; }
  .tab {
    padding: 12px 14px 14px;
    font-size: 0.72rem;
    min-height: 44px;          /* WCAG 2.5.8 érintési célméret */
    scroll-snap-align: center;
  }
  .menu-grid { grid-template-columns: 1fr; gap: 10px; }
  .price-num { font-size: 1.6rem; }

  /* Közösség */
  .community-top { text-align: center; }
  .social-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Vélemények – egy oszlop, teljes szélességű gombok */
  .reviews-lead { font-size: 0.92rem; margin-bottom: 28px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 22px 20px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-brand, .footer-col { text-align: center; }
  .footer-logo-row { justify-content: center; }
  .footer-social-icons { justify-content: center; }
  .footer-desc { max-width: 100%; }
  .footer-contact-item { justify-content: center; text-align: left; }
  .hours-list { max-width: 320px; margin: 0 auto; }
  .footer-col-title { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; padding: 16px 20px; }
}

@media (max-width: 480px) {
  .hero-stage { --burger-w: clamp(165px, 54vw, 225px); }
  .hero-wordmark { font-size: clamp(2.6rem, 24vw, 5rem); }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.58rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 16px 12px; }
  .feature-card h3 { font-size: 0.85rem; }
  .feature-card p { font-size: 0.78rem; }
  .section-title { font-size: 2rem; }
  .footer-contact-item { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
  }

/* Nagyon keskeny kijelző: a két hero gomb egymás alatt, azonos szélességben */
@media (max-width: 360px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

/* ─── MOBIL: ÉRINTÉSI CÉLMÉRETEK ÉS BIZTONSÁGOS TERÜLET ─── */
@media (max-width: 768px) {
  /* WCAG 2.5.8 – minimum 44×44px kattintható felület.
     A folyó szövegbe ágyazott linkek (hero-city, jogi sor) kivételt élveznek. */
  .mob-link { min-height: 48px; display: flex; align-items: center; }
  .lang-btn { min-width: 40px; min-height: 40px; }
  .hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .btn { min-height: 46px; }
  .footer-icon { width: 44px; height: 44px; }
  .social-pill { padding: 10px 20px; }
  .modal-close { width: 44px; height: 44px; top: 0.4rem; right: 0.4rem; }
  .social-link { min-height: 44px; align-items: center; }
  .cookie-bar button { min-height: 44px; padding: 0.5rem 1.25rem; }

  /* Footer kapcsolat: telefon / e-mail / térkép kényelmes célpont */
  a.fc-main, .fc-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .fc-phone { font-size: 1.05rem !important; }

  /* iPhone „notch" / gesztussáv */
  .cookie-bar { padding-bottom: calc(0.65rem + env(safe-area-inset-bottom)); }
  .footer-bottom { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .legal-modal { padding: 0.75rem; }
  .legal-modal-box { max-height: 88vh; max-height: 88svh; padding: 1.5rem 1.25rem 1.25rem; }
}

/* Vízszintes tájolású telefon: ne nyúljon túl a hero */
@media (max-height: 460px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 96px; padding-bottom: 32px; }
  .hero-scroll { display: none; }
}
