:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #1a1a1a;
  --gold: #f0b429;
  --gold-dim: #c9962a;
  --chrome: #d6d9de;
  --chrome-dim: #9aa0a8;
  --line: #2a2a2a;
  --radius: 14px;
  --maxw: 1120px;
  --nav-h: 84px;

  /* Tipográfia – ezeket a CMS „Megjelenés" menüje állítja (theme.json) */
  --font-body: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-heading: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --base-font-size: 16px;
  --heading-scale: 1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--chrome);
  font-family: var(--font-body);
  font-size: var(--base-font-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Csillagos, pislákoló háttér (fix, a tartalom mögött) */
.starfield { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.starfield .star {
  position: absolute; border-radius: 50%; background: #fff;
  box-shadow: 0 0 6px 1px rgba(255,255,255,0.4); opacity: .5;
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
}
.starfield .star--gold { background: var(--gold); box-shadow: 0 0 7px 1px rgba(240,180,41,0.65); }
@keyframes twinkle {
  from { opacity: .10; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) { .starfield .star { animation: none; opacity: .5; } }

h1, h2, h3, .nav__brand-text { font-family: var(--font-heading); }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Vékony felső elérhetőségi sáv ---------- */
.topbar { background: #0d0d0d; border-bottom: 1px solid var(--line); font-size: .9rem; }
.topbar__inner {
  min-height: 38px; display: flex; align-items: center; justify-content: flex-end; gap: 20px;
  padding: 6px clamp(16px, 3vw, 44px);
}
.topbar__phone {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700;
  border: 1px solid rgba(240,180,41,0.4); border-radius: 40px; padding: 8px 16px;
  background: rgba(240,180,41,0.06);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.topbar__phone:hover { color: var(--gold); text-decoration: none; border-color: var(--gold); background: rgba(240,180,41,0.13); }
.topbar__phone svg { color: var(--gold); flex: none; }
.topbar__socials { display: inline-flex; align-items: center; gap: 10px; }
/* Ikon-gombok (e-mail, Facebook) – az arany dizájnhoz illesztve, a telefon-chippel összhangban */
.topbar__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  border: 1px solid rgba(240,180,41,0.4); color: var(--gold);
  background: rgba(240,180,41,0.06);
  transition: color .15s ease, border-color .15s ease, transform .12s ease, background .15s ease;
}
.topbar__social:hover { color: var(--gold); border-color: var(--gold); background: rgba(240,180,41,0.14); transform: translateY(-1px); }
.topbar__social svg { color: inherit; }
@media (max-width: 560px) {
  .topbar__inner { justify-content: center; gap: 16px; }
}

/* ---------- Felső navigáció ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(15,13,9,0.94) 0%, rgba(10,10,10,0.88) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,180,41,0.22);
  box-shadow: 0 1px 0 rgba(240,180,41,0.10), 0 8px 28px rgba(0,0,0,0.5);
}
/* A fejléc tartalma középre zárt max-szélességben (ne szóródjon szét ultraszéles kijelzőn) */
.nav__top { max-width: 1560px; margin-left: auto; margin-right: auto; }

.nav__top {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px clamp(16px, 3vw, 44px);
  min-height: var(--nav-h);
}
.nav__brand { display: inline-flex; align-items: center; z-index: 1; }
.nav__brand:hover { text-decoration: none; }
.nav__logo {
  height: 92px; width: auto;
  border-radius: 16px; border: 1px solid rgba(240,180,41,0.45); background: #0a0a0a;
  animation: logoBeam 4.2s ease-in-out infinite;
}
/* Neon "pislogó fényszóró": kétszer felvillan, közte halvány arany fény */
@keyframes logoBeam {
  0%, 40%, 100% { box-shadow: 0 0 0 1px rgba(240,180,41,0.4), 0 0 14px rgba(240,180,41,0.22); }
  44% { box-shadow: 0 0 0 1px var(--gold), 0 0 26px rgba(255,255,255,0.6), 0 0 46px rgba(240,180,41,0.6); }
  48% { box-shadow: 0 0 0 1px rgba(240,180,41,0.4), 0 0 14px rgba(240,180,41,0.22); }
  52% { box-shadow: 0 0 0 1px var(--gold), 0 0 32px rgba(255,255,255,0.75), 0 0 52px rgba(240,180,41,0.7); }
  56% { box-shadow: 0 0 0 1px rgba(240,180,41,0.4), 0 0 14px rgba(240,180,41,0.22); }
}
@media (prefers-reduced-motion: reduce) {
  .nav__logo { animation: none; box-shadow: 0 0 0 1px rgba(240,180,41,0.4), 0 0 14px rgba(240,180,41,0.22); }
}
.nav__title {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-align: center; pointer-events: none; white-space: nowrap;
}
.nav__title-main {
  font-family: var(--font-heading); font-weight: 800; letter-spacing: 1px;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  background: linear-gradient(180deg, #ffffff 0%, #e7e9ec 45%, var(--gold) 135%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__title-sub { color: var(--chrome-dim); font-size: clamp(.68rem, 1.1vw, .82rem); font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; }
.nav__right { display: flex; align-items: center; gap: 16px; z-index: 1; }

.nav__links {
  list-style: none; display: flex; justify-content: center; align-items: center; gap: 6px;
  padding: 6px clamp(16px, 3vw, 44px) 12px; border-top: 1px solid rgba(240,180,41,0.12);
}
.nav__links a {
  display: inline-block; padding: 9px 16px; border-radius: 8px;
  color: var(--chrome); font-weight: 700; font-size: .82rem; letter-spacing: 1.2px; text-transform: uppercase;
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--gold); background: rgba(240,180,41,0.08); text-decoration: none; }
.nav__cta {
  color: #1a1200 !important;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim)) !important;
  font-weight: 800 !important;
}
.nav__cta:hover { filter: brightness(1.05); }

/* Aktív (éppen megnyitott) oldal a menüben – tartósan kijelölve marad */
.nav__links a.is-active { color: var(--gold); background: rgba(240,180,41,0.12); box-shadow: inset 0 -2px 0 var(--gold); }
.nav__links a.is-active:hover { color: var(--gold); }
.nav__cta.is-active { box-shadow: 0 0 0 2px rgba(255,255,255,0.28); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: 0; padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--chrome); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero (banner háttérrel) ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 72px 20px 64px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 520px) { .hero:not(.hero--banner) { min-height: 380px; padding: 56px 18px 48px; } }

/* Banner-mód: rugalmas szélesség (zoomkor együtt igazodik), ésszerű maximummal, keretezve */
.hero--banner { display: block; padding: 22px 20px 12px; min-height: 0; }
.hero--banner .hero__overlay { display: none; }
.hero__banner {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.hero--banner .hero__content { position: static; text-align: center; padding: 16px 20px 4px; }
.hero--banner .hero__cta { margin-top: 0; }

/* Banner + két oldalán animált "reklám" buborékok */
.hero-stage { display: flex; align-items: center; justify-content: center; gap: 28px; width: 100%; }
.hero-stage .hero__banner { flex: 0 1 1120px; width: 100%; max-width: 1120px; margin: 0; }
.hero-flank { flex: 1 1 0; display: flex; flex-direction: column; gap: 16px; max-width: 300px; }
.hero-flank--left { align-items: flex-end; }
.hero-flank--right { align-items: flex-start; }
.flank-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, #16130b 0%, #0d0d0d 100%);
  border: 1px solid rgba(240,180,41,0.5); border-radius: 40px;
  padding: 10px 16px; color: var(--chrome); font-weight: 700; font-size: .92rem; white-space: nowrap;
  animation: chipPulse 3.2s ease-in-out infinite;
}
.flank-chip__ic { color: var(--gold); font-size: 1rem; text-shadow: 0 0 8px rgba(240,180,41,0.6); }
.flank-imgwrap {
  position: relative; margin: 0; width: 100%; max-width: 300px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(240,180,41,0.45);
  animation: flankFloat 4.4s ease-in-out infinite;
}
.flank-imgwrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(240,180,41,0.10) 0%, rgba(10,10,10,0.10) 32%, rgba(10,10,10,0.64) 100%);
  box-shadow: inset 0 0 42px rgba(0,0,0,0.5);
}
.flank-img { display: block; width: 100%; height: auto; max-height: 250px; object-fit: cover; filter: saturate(1.05) contrast(1.03); }
@keyframes flankFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 18px rgba(240,180,41,0.16); }
  50%      { transform: translateY(-10px); box-shadow: 0 0 34px rgba(240,180,41,0.42); }
}
@keyframes chipPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 1px rgba(240,180,41,0.35) inset, 0 0 12px rgba(240,180,41,0.10); border-color: rgba(240,180,41,0.4); }
  50%      { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--gold) inset, 0 0 22px rgba(240,180,41,0.45); border-color: var(--gold); }
}
@media (max-width: 1400px) { .hero-flank { display: none; } .hero-stage { gap: 0; } }
@media (prefers-reduced-motion: reduce) { .flank-chip, .flank-imgwrap { animation: none; } }
/* Sötét fátyol a banner fölött a szöveg olvashatóságáért */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 360px at 50% -8%, rgba(240,180,41,0.12), transparent 62%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.90) 100%);
}
.hero__content { position: relative; z-index: 1; }

/* Kis, letisztult embléma a cím fölött (opcionális brand-jel) */
.hero__emblem {
  display: block; width: auto; max-width: 92px; height: auto;
  margin: 0 auto 18px;
  border-radius: 18px;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.55));
  opacity: .96;
}
@media (max-width: 520px) { .hero__emblem { max-width: 76px; } }

/* Főcím – a hero fő fókuszpontja */
.hero__title {
  font-size: calc(clamp(2rem, 6.5vw, 3.4rem) * var(--heading-scale));
  font-weight: 800; letter-spacing: 0.5px; line-height: 1.12;
  background: linear-gradient(180deg, #ffffff 0%, var(--chrome) 42%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__subtitle {
  margin-top: 14px;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: #e6e8ec;
  max-width: 680px; margin-left: auto; margin-right: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero__cta { margin-top: 26px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 40px;
  font-weight: 700; border: 1px solid var(--gold);
  transition: transform .12s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
  color: #1a1200; box-shadow: 0 6px 20px rgba(240,180,41,0.25);
}
.btn--ghost { color: var(--gold); background: rgba(0,0,0,0.25); }

/* ---------- Szekciók ---------- */
section { padding: 60px 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 12px); }
section:last-of-type { border-bottom: none; }

.section__title {
  font-size: calc(clamp(1.4rem, 4vw, 2rem) * var(--heading-scale));
  color: #fff; margin-bottom: 8px; position: relative; display: inline-block;
}
.section__title::after {
  content: ""; display: block; height: 3px; width: 54px; margin-top: 8px;
  background: linear-gradient(90deg, var(--gold), transparent); border-radius: 3px;
}

.lead { color: var(--chrome-dim); max-width: 760px; font-size: 1.05rem; }

/* ---------- Rich (Markdown) tartalom: félkövér, címsorok, listák ---------- */
.rich > *:first-child { margin-top: 0; }
.rich > *:last-child { margin-bottom: 0; }
.rich p { margin: 0 0 10px; }
.rich strong, .rich b { font-weight: 800; color: #fff; }
.rich em { font-style: italic; }
.rich h1, .rich h2, .rich h3, .rich h4 { color: #fff; line-height: 1.2; margin: 10px 0 8px; letter-spacing: .3px; }
.rich h1 { font-size: 1.8em; }
.rich h2 { font-size: 1.5em; }
.rich h3 { font-size: 1.28em; }
.rich h4 { font-size: 1.12em; }
.rich ul, .rich ol { margin: 8px 0 10px 1.25em; }
.rich li { margin: 3px 0; }
.rich a { color: var(--gold); }
.rich blockquote { margin: 8px 0; padding: 6px 14px; border-left: 3px solid var(--gold); color: var(--chrome); background: rgba(255,255,255,0.03); }
.row__name.rich { flex: 1; }

/* ---------- Csomagkártyák ---------- */
.packages { display: grid; gap: 20px; margin-top: 28px; grid-template-columns: repeat(3, 1fr); }
.pkg {
  background: linear-gradient(180deg, var(--bg-card), #101010);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s ease, transform .12s ease;
}
.pkg:hover { border-color: var(--gold); transform: translateY(-3px); }
.pkg--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset, 0 10px 30px rgba(0,0,0,0.5); }
.pkg__badge {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #1a1200; background: var(--gold);
  padding: 4px 10px; border-radius: 20px;
}
.pkg__name { font-size: 1.35rem; font-weight: 800; color: var(--gold); letter-spacing: .5px; }
.pkg__desc { color: var(--chrome-dim); flex: 1; }
.pkg__price { font-size: 1.5rem; font-weight: 800; color: #fff; }

/* ---------- Lista sorok ---------- */
.rows { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--bg-elev); border-bottom: 1px solid var(--line);
}
.row:last-child { border-bottom: none; }
.row__name { color: var(--chrome); }
.row__price { color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ---------- Galéria ---------- */
.gallery { margin-top: 26px; display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.gallery figure { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); }
.gallery img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gallery figcaption { padding: 8px 12px; font-size: .88rem; color: var(--chrome-dim); }
.gallery__empty { color: var(--chrome-dim); margin-top: 20px; font-style: italic; }

/* ---------- Kapcsolat ---------- */
.contact__grid { display: grid; gap: 18px; margin-top: 24px; grid-template-columns: 1fr 1fr; }
.contact__card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact__phone { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.contact__note { color: var(--chrome-dim); margin-top: 10px; }

/* ---------- Lábléc ---------- */
.site-footer { border-top: 1px solid rgba(240,180,41,0.20); background: linear-gradient(180deg, rgba(15,13,9,0.65), rgba(9,9,9,0.92)); margin-top: 28px; }
.site-footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding: 44px clamp(16px,3vw,44px); }
.site-footer__brand { display: flex; align-items: flex-start; gap: 16px; }
.site-footer__logo { height: 64px; width: auto; border-radius: 14px; border: 1px solid rgba(240,180,41,0.35); }
.site-footer__brandtext { display: flex; flex-direction: column; gap: 5px; }
.site-footer__brandtext strong { color: #fff; font-family: var(--font-heading); font-size: 1.18rem; letter-spacing: .3px; }
.site-footer__brandtext span { color: var(--chrome-dim); font-size: .88rem; }
.site-footer__tags { color: var(--gold) !important; font-weight: 600; }
.site-footer__h { color: #fff; font-family: var(--font-heading); font-size: 1rem; letter-spacing: .5px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(240,180,41,0.18); }
.site-footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.site-footer__link { display: inline-flex; align-items: center; gap: 9px; color: var(--chrome); font-weight: 600; font-size: .95rem; }
.site-footer__link svg { color: var(--gold); flex: none; }
.site-footer__link:hover { color: var(--gold); text-decoration: none; }
.site-footer__links { display: flex; flex-direction: column; gap: 9px; }
.site-footer__links a { color: var(--chrome-dim); font-size: .95rem; width: fit-content; }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 18px; padding: 16px clamp(16px,3vw,44px); color: var(--chrome-dim); font-size: .85rem; border-top: 1px solid var(--line); }
.site-footer__legal a { color: var(--chrome-dim); }
.site-footer__legal a:hover { color: var(--gold); }
@media (max-width: 960px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .site-footer__inner { grid-template-columns: 1fr; gap: 26px; } .site-footer__bottom { justify-content: flex-start; } }

/* ---------- Futó szalaghirdetés (ticker) ---------- */
.ticker {
  width: 100%; overflow: hidden;
  background: linear-gradient(180deg, rgba(240,180,41,0.13), rgba(240,180,41,0.05));
  border-top: 1px solid rgba(240,180,41,0.35);
  border-bottom: 1px solid rgba(240,180,41,0.35);
  padding: 12px 0; margin-top: 8px;
}
.ticker__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: tickerMove 34s linear infinite; }
.ticker__item { color: var(--gold); font-weight: 700; font-size: 1rem; letter-spacing: .3px; padding: 0 30px; text-shadow: 0 0 10px rgba(240,180,41,0.4); }
@keyframes tickerMove { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ticker:hover .ticker__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; white-space: normal; text-align: center; } }

/* ---------- Aloldalak: fejléc + hasáb ---------- */
.page__head { padding: 46px 0 6px; }
.page__title {
  font-family: var(--font-heading);
  font-size: calc(clamp(1.7rem, 4.5vw, 2.6rem) * var(--heading-scale));
  color: #fff; margin-bottom: 8px; display: inline-block;
}
.page__title::after { content: ""; display: block; height: 3px; width: 64px; margin-top: 10px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 3px; }
.page__intro { color: var(--chrome-dim); max-width: 840px; font-size: 1.05rem; margin-top: 8px; }
.prose { color: var(--chrome-dim); max-width: 840px; font-size: 1.06rem; padding: 6px 0 48px; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: #fff; }

/* ---------- Kártyarácsok ---------- */
.cards { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin: 26px 0 60px; }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 840px; }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin: 44px 0 60px; }
.cards--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

/* ---------- Neon (pulzáló) kártya ---------- */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(240,180,41,0.5) inset, 0 0 12px rgba(240,180,41,0.18), 0 0 26px rgba(240,180,41,0.08); border-color: rgba(240,180,41,0.5); }
  50%      { box-shadow: 0 0 0 1px var(--gold) inset, 0 0 22px rgba(240,180,41,0.5), 0 0 48px rgba(240,180,41,0.28); border-color: var(--gold); }
}
.neon-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, #16130b 0%, #0d0d0d 100%);
  border: 1px solid rgba(240,180,41,0.5); border-radius: 16px; padding: 26px 22px;
  color: var(--chrome); animation: neonPulse 2.8s ease-in-out infinite;
  transition: transform .15s ease;
}
.neon-card:hover { transform: translateY(-4px); }
.neon-card__badge { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #1a1200; background: var(--gold); padding: 4px 10px; border-radius: 20px; }
.neon-card__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--gold); letter-spacing: .4px; text-shadow: 0 0 12px rgba(240,180,41,0.45); }
.neon-card__desc { color: var(--chrome-dim); flex: 1; }
.neon-card__price { font-size: 1.5rem; font-weight: 800; color: #fff; margin-top: 4px; }
a.neon-card__price { color: var(--gold); }
.neon-card__more { color: var(--gold); font-weight: 700; margin-top: 6px; }
.neon-card__order { align-self: flex-start; margin-top: 8px; cursor: pointer; }
.neon-card__links { display: flex; flex-wrap: wrap; gap: 10px; }
a.neon-card, a.neon-card:hover { text-decoration: none; }
@media (prefers-reduced-motion: reduce) { .neon-card { animation: none; } }

/* ---------- Bemutatkozás a kezdőlapon ---------- */
.home-about { padding: 40px 0 6px; }

/* ---------- Miért válassz engem? ---------- */
.why { padding: 42px 0 8px; }
.why-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 24px; }
.why-item { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: border-color .2s ease, transform .12s ease; }
.why-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.why-item__ic { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.why-item h3 { font-family: var(--font-heading); color: var(--gold); font-size: 1.12rem; margin-bottom: 6px; }
.why-item p { color: var(--chrome-dim); font-size: .95rem; }

/* ---------- Vélemények / értékelés ---------- */
.reviews { margin-top: 8px; padding: 26px 0 44px; }
.reviews__panel {
  background: linear-gradient(180deg, rgba(22,19,11,0.55), rgba(13,13,13,0.55));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 30px clamp(18px, 3vw, 40px) 34px;
}
.reviews__summary { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 16px 0 4px; }
.reviews__avg { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; text-shadow: 0 0 16px rgba(240,180,41,0.4); }
.reviews__avg-stars .stars { font-size: 1.35rem; }
.reviews__count { color: var(--chrome-dim); font-size: .95rem; }
.reviews__empty { color: var(--chrome-dim); margin: 22px 0; font-size: 1.05rem; }
.reviews__empty strong { color: var(--gold); }
.reviews__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px; margin-top: 22px; align-items: start; }
.reviews__list { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.reviews__aside { align-self: start; }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; gap: 26px; } }
.review-form-card { margin-top: 10px; }
.review-form-card__title { font-family: var(--font-heading); color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.review-or { color: var(--chrome-dim); margin-top: 12px; font-size: .95rem; }
.review-or a { color: var(--gold); }
.stars { color: #555; font-size: 1.15rem; letter-spacing: 2px; }
.stars .star--on { color: var(--gold); text-shadow: 0 0 8px rgba(240,180,41,0.5); }
.review-card__text { color: var(--chrome); }
.review-card__meta { color: var(--chrome-dim); font-size: .92rem; margin-top: 4px; }

.review-form-wrap { max-width: 620px; margin: 32px 0 10px; }
.review-form { background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.review-form .form-row { display: flex; flex-direction: column; gap: 6px; }
.review-form label, .review-form .form-label { color: var(--chrome); font-weight: 600; font-size: .95rem; }
.review-form input[type="text"], .review-form textarea {
  width: 100%; background: #0e0e0e; border: 1px solid var(--line); border-radius: 10px;
  color: var(--chrome); padding: 11px 13px; font: inherit; font-size: 1rem;
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(240,180,41,0.2); }
.review-form textarea { resize: vertical; }
.review-form .btn { align-self: flex-start; cursor: pointer; border: 1px solid var(--gold); }
.review-form__note { color: var(--chrome-dim); font-size: .85rem; margin: 0; }
.review-form__ok { color: var(--gold); font-weight: 700; font-size: 1.05rem; text-align: center; padding: 12px 0; }
.hp { position: absolute; left: -9999px; }
.star-input { display: inline-flex; gap: 4px; }
.star-btn { background: none; border: 0; cursor: pointer; font-size: 1.7rem; line-height: 1; color: #555; padding: 0 2px; transition: color .12s ease, transform .12s ease; }
.star-btn:hover { transform: scale(1.12); }
.star-btn.on { color: var(--gold); text-shadow: 0 0 10px rgba(240,180,41,0.55); }
.review-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.review-cta p { color: var(--chrome-dim); margin: 0; }

/* ---------- Reszponzív ---------- */
@media (max-width: 860px) {
  .packages { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }

  .nav__toggle { display: flex; }
  .nav__logo { height: 52px; }
  .nav__title { display: none; }
  .nav__right { gap: 10px; }
  .nav__right .topbar__social { display: none; }
  .topbar__phone span { font-size: .95rem; }
  .nav__links {
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 0 12px; border-top: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav.open .nav__links { max-height: 520px; padding: 6px 12px 12px; }
  .nav__links a { padding: 12px 10px; border-radius: 8px; }
  .nav__cta { text-align: center; margin-top: 6px; }
}

/* ---------- Időpontkérő űrlap ---------- */
.booking {
  background: linear-gradient(180deg, rgba(240,180,41,0.05), rgba(20,20,20,0.6));
  border: 1px solid rgba(240,180,41,0.28); border-radius: var(--radius);
  padding: 26px clamp(18px, 3vw, 34px); margin: 0 auto 30px; max-width: 860px;
}
.booking__title { font-family: var(--font-heading); color: #fff; font-size: 1.5rem; margin: 0 0 6px; }
.booking__lead { color: var(--chrome-dim); margin: 0 0 20px; font-size: .96rem; }
.booking__lead a { color: var(--gold); }
.booking__form { display: flex; flex-direction: column; gap: 14px; }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking__field { display: flex; flex-direction: column; gap: 6px; }
.booking__field > span { color: var(--chrome); font-size: .86rem; font-weight: 600; }
.booking__field input,
.booking__field select,
.booking__field textarea {
  width: 100%; background: #0f0f0f; color: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px;
  font-family: inherit; font-size: .96rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.booking__field input::placeholder,
.booking__field textarea::placeholder { color: #6b7079; }
.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,180,41,0.15);
}
.booking__field textarea { resize: vertical; min-height: 96px; }
.booking__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.booking__note { margin: 6px 0 0; font-size: .9rem; padding: 10px 14px; border-radius: 10px; }
.booking__note--ok { color: #bff0c8; background: rgba(40,120,60,0.18); border: 1px solid rgba(80,180,110,0.4); }
.booking__note--err { color: #ffc9c9; background: rgba(150,40,40,0.18); border: 1px solid rgba(200,90,90,0.45); }

/* ---------- GYIK harmonika ---------- */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .15s ease, background .15s ease;
}
.faq__item[open] { border-color: rgba(240,180,41,0.45); background: #191919; }
.faq__q {
  cursor: pointer; list-style: none; padding: 16px 46px 16px 20px; position: relative;
  color: #fff; font-family: var(--font-heading); font-size: 1.06rem; font-weight: 600;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.5rem; line-height: 1; transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { content: "–"; }
.faq__q:hover { color: var(--gold); }
.faq__a { padding: 0 20px 18px; color: var(--chrome); font-size: .97rem; line-height: 1.65; }
.faq__a a { color: var(--gold); }
.faq__a p:first-child { margin-top: 0; }

@media (max-width: 640px) {
  .booking__row { grid-template-columns: 1fr; }
  .booking__actions .btn { width: 100%; text-align: center; }
}

/* ---------- Kapcsolat oldal elrendezes ---------- */
.contact-layout {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 24px;
  align-items: start; max-width: 1000px; margin: 0 auto;
}
.contact-layout .booking { max-width: none; margin: 0; }

.contact-aside {
  background: linear-gradient(180deg, rgba(240,180,41,0.06), rgba(20,20,20,0.55));
  border: 1px solid rgba(240,180,41,0.28); border-radius: var(--radius);
  padding: 26px 24px; position: sticky; top: 100px;
}
.contact-aside__title { font-family: var(--font-heading); color: #fff; font-size: 1.25rem; margin: 0 0 20px; }
.contact-info { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info__item { display: flex; gap: 14px; align-items: center; }
.contact-info__ic {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); background: rgba(240,180,41,0.08); border: 1px solid rgba(240,180,41,0.4);
}
.contact-info__ic svg { width: 19px; height: 19px; }
.contact-info__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-info__label { color: var(--chrome-dim); font-size: .74rem; text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }
.contact-info__value a { color: #fff; font-weight: 700; font-size: 1.06rem; word-break: break-word; }
.contact-info__value a:hover { color: var(--gold); text-decoration: none; }
.contact-aside__note {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(240,180,41,0.18);
  color: var(--chrome-dim); font-size: .92rem; line-height: 1.6;
}
.contact-aside__note p:first-child { margin-top: 0; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 18px; }
  .contact-aside { position: static; }
}

/* ---------- Idopont-igenylo lap: extra elemek ---------- */
.booking__field input,
.booking__field select,
.booking__field textarea { color-scheme: dark; }
.booking__field input[type="date"] { min-height: 44px; }
.booking__info {
  margin: 2px 0 0; padding: 12px 15px; font-size: .9rem; line-height: 1.55;
  color: var(--chrome); background: rgba(240,180,41,0.07);
  border: 1px solid rgba(240,180,41,0.28); border-left: 3px solid var(--gold);
  border-radius: 10px;
}
.booking__info strong { color: #fff; }
/* Hosszu e-mail cim a panelen: kisebb betu, szep tordeles */
.contact-info__value--email a { font-size: .95rem; overflow-wrap: anywhere; }

/* ---------- Lebego mobil gyorssav (Hivas + Viber) ---------- */
.mbar { display: none; }
@media (max-width: 860px) {
  .mbar {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    background: rgba(10,10,10,0.92); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(240,180,41,0.3);
  }
  .mbar__btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 12px; font-weight: 800; font-size: 1rem;
    text-decoration: none; letter-spacing: .3px;
  }
  .mbar__btn svg { width: 18px; height: 18px; }
  .mbar__btn--call { background: var(--gold); color: #1a1400; }
  .mbar__btn--viber { background: rgba(240,180,41,0.10); color: var(--gold); border: 1px solid rgba(240,180,41,0.5); }
  .mbar__btn:active { transform: translateY(1px); }
  body.has-mbar .site-footer { padding-bottom: 84px; }
}

/* ---------- Kiszolgalt telepulesek (kezdolap) ---------- */
.areas { margin: 8px auto 0; max-width: 900px; text-align: center; }
.areas__lead { color: var(--chrome-dim); max-width: 640px; margin: 0 auto 18px; line-height: 1.6; }
.areas__tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas__tag {
  padding: 8px 16px; border-radius: 40px; font-weight: 700; font-size: .95rem; color: var(--chrome);
  background: rgba(240,180,41,0.06); border: 1px solid rgba(240,180,41,0.32);
}
.areas__note { color: var(--chrome-dim); margin: 20px 0 0; font-size: .92rem; }
.areas__note a { color: var(--gold); }

/* ---------- Vissza a lap tetejere gomb ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 22px; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #1a1400;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .15s ease;
}
.to-top--show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: #ffca4d; }
.to-top:active { transform: translateY(1px); }
@media (max-width: 860px) {
  body.has-mbar .to-top { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Őszi akció blokk (kezdőlap) ---------- */
.promo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(240,180,41,0.45);
  background-size: cover; background-position: center;
  margin: 6px 0 4px; box-shadow: 0 0 34px rgba(240,180,41,0.14);
}
.promo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.86) 42%, rgba(12,10,4,0.5) 100%);
}
.promo__inner {
  position: relative; display: flex; align-items: center;
  gap: clamp(16px, 3vw, 36px); padding: clamp(20px, 3.4vw, 40px);
}
.promo__badge {
  flex: none; width: clamp(86px, 13vw, 124px); height: clamp(86px, 13vw, 124px); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  color: #1a1400; background: radial-gradient(circle at 35% 30%, #ffd970, var(--gold));
  box-shadow: 0 8px 22px rgba(240,180,41,0.5); border: 3px solid rgba(255,255,255,0.22);
  transform: rotate(-8deg); animation: promoPulse 2.4s ease-in-out infinite;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(240,180,41,0.45); }
  50% { box-shadow: 0 8px 34px rgba(240,180,41,0.8); }
}
.promo__eyebrow { color: var(--gold); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: .88rem; }
.promo__title { font-family: var(--font-heading); color: #fff; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.2; margin: 7px 0 9px; }
.promo__text { color: var(--chrome); max-width: 640px; line-height: 1.6; margin: 0 0 16px; }
.promo__text p:first-child { margin-top: 0; } .promo__text p:last-child { margin-bottom: 0; }
.promo__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.promo__valid { color: var(--chrome-dim); font-size: .84rem; max-width: 340px; }
@media (max-width: 640px) {
  .promo__inner { flex-direction: column; text-align: center; }
  .promo__overlay { background: linear-gradient(180deg, rgba(10,10,10,0.8), rgba(10,10,10,0.93)); }
  .promo__cta-row { justify-content: center; }
  .promo__text { max-width: none; }
}
