/* ==========================================================================
   Bársonyéj — fő stíluslap
   Stílus: bársonyos éjszaka, editorial / luxus  •  Sötét mód  •  hu-HU
   ========================================================================== */

/* ---------- 1. Design tokenek ---------- */
:root {
  /* szín */
  --bg:           #120A11;
  --bg-2:         #180E17;
  --surface:      #21131F;
  --surface-2:    #2C1A29;
  --border:       #4A2B41;
  --border-soft:  #331E2E;
  --text:         #F6EBF1;
  --muted:        #C2A8B6;
  --primary:      #C2306B;
  --primary-soft: #E8709F;
  --gold:         #E3B341;
  --gold-soft:    #F2D493;
  --success:      #6EC28C;

  /* tipográfia */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* térköz (8pt ritmus) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 104px;

  /* sarkok + árnyék */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-1: 0 2px 10px rgba(0, 0, 0, .4);
  --shadow-2: 0 20px 54px rgba(0, 0, 0, .55);
  --shadow-gold: 0 0 0 1px rgba(227, 179, 65, .4), 0 22px 54px rgba(194, 48, 107, .2);

  /* mozgás — egységes ritmus az egész oldalon */
  --dur-fast: 170ms;
  --dur-mid:  280ms;
  --dur-slow: 620ms;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in:  cubic-bezier(.7, 0, .84, 0);
  --ease-spring: cubic-bezier(.34, 1.5, .64, 1);

  /* rétegek */
  --z-sticky: 40;
  --z-overlay: 100;
  --z-modal: 1000;

  --container: 1180px;
}

/* ---------- 2. Alapok ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* finom filmszemcse az egész oldalon — mélységet ad a lapos sötét felületnek */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 var(--space-3); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 6.2vw, 4.4rem); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 var(--space-3); max-width: 66ch; }
em { color: var(--gold-soft); font-style: italic; }
ul, ol { padding-left: 1.2rem; }
li { margin-bottom: var(--space-2); }
hr { border: 0; border-top: 1px solid var(--border-soft); margin: var(--space-6) 0; }

::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }

/* ---------- 3. Elrendezés ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: var(--space-8) 0; position: relative; }
.section--tight { padding: var(--space-7) 0; }
.stack > * + * { margin-top: var(--space-3); }
.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.center p { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }

.lead { font-size: 1.1rem; color: var(--muted); }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

/* arany csillanás a kiemelt címeken */
.shine {
  background: linear-gradient(100deg, var(--text) 20%, var(--gold-soft) 42%, var(--gold) 50%, var(--text) 72%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6.5s var(--ease-out) infinite;
}
@keyframes shine { 0%, 62% { background-position: 190% 0; } 100% { background-position: -60% 0; } }

.rule { width: 62px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: var(--space-4); }
.center .rule { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- 4. Gombok ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 30px;
  border: 1px solid var(--primary); border-radius: var(--r-pill);
  background: var(--primary); color: #fff;
  font-size: .88rem; font-weight: 600; letter-spacing: .04em;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              background-color var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
  box-shadow: 0 10px 28px rgba(194, 48, 107, .3);
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(242, 212, 147, .35) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(194, 48, 107, .42); }
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #1B0F18; box-shadow: 0 10px 28px rgba(227, 179, 65, .28); }
.btn--gold:hover { box-shadow: 0 18px 38px rgba(227, 179, 65, .42); }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--text); box-shadow: none; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); box-shadow: none; }
.btn--sm { min-height: 42px; padding: 9px 20px; font-size: .8rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

/* ---------- 5. Fejléc ---------- */
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: var(--z-modal);
  background: var(--gold); color: #1B0F18; padding: 12px 20px; border-radius: var(--r-sm); font-weight: 600;
  transition: top var(--dur-mid) var(--ease-out);
}
.skip-link:focus { top: 16px; }

.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: var(--z-modal); transition: width 80ms linear;
}

.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(18, 10, 17, .7);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-mid) var(--ease-out), background-color var(--dur-mid) var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--border-soft); background: rgba(18, 10, 17, .95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand svg { width: 36px; height: 36px; flex: none; transition: transform var(--dur-slow) var(--ease-spring); }
.brand:hover svg { transform: rotate(12deg) scale(1.08); }
.brand b { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; letter-spacing: .01em; display: block; line-height: 1.1; }
.brand small { display: block; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 10px 15px; border-radius: var(--r-sm);
  font-size: .93rem; color: var(--muted);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.age-chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em;
  color: var(--gold); border: 1px solid rgba(227, 179, 65, .4);
  padding: 6px 12px; border-radius: var(--r-pill);
}

.nav-toggle {
  display: none; width: 46px; height: 46px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); position: relative; transition: background var(--dur-fast) linear; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--text);
  transition: transform var(--dur-mid) var(--ease-out), top var(--dur-mid) var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero { position: relative; overflow: hidden; padding: var(--space-8) 0 var(--space-7); isolation: isolate; }
.hero-bg { position: absolute; inset: -12% 0 -22%; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; will-change: transform; }
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(65% 55% at 78% 12%, rgba(194, 48, 107, .34), transparent 62%),
    radial-gradient(50% 50% at 10% 78%, rgba(227, 179, 65, .14), transparent 65%),
    linear-gradient(180deg, rgba(18, 10, 17, .6) 0%, rgba(18, 10, 17, .9) 58%, var(--bg) 100%);
}
/* lassan lüktető bársony-fényfolt */
.hero-orb {
  position: absolute; z-index: -1; width: 42vw; height: 42vw; max-width: 560px; max-height: 560px;
  right: -8%; top: 6%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 112, 159, .3), transparent 68%);
  filter: blur(30px);
  animation: breathe 11s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.15); opacity: 1; } }

.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-7); align-items: center; }
.hero h1 { margin-bottom: var(--space-4); }
.hero .lead { font-size: 1.15rem; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero-note { display: flex; align-items: flex-start; gap: 10px; margin-top: var(--space-5); font-size: .88rem; color: var(--muted); }
.hero-note svg { width: 19px; height: 19px; flex: none; color: var(--gold); margin-top: 3px; }

.split-char { display: inline-block; opacity: 0; transform: translateY(30px) scaleY(1.3); transform-origin: bottom; }
.is-ready .split-char { animation: char-in .72s var(--ease-out) forwards; }
@keyframes char-in { to { opacity: 1; transform: none; } }

/* fő kép — függönyszerű felfedés */
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg);
  clip-path: inset(0 0 0 0);
}
.hero-figure::before {
  content: ''; position: absolute; inset: -10px; border: 1px solid var(--border);
  border-radius: calc(var(--r-lg) + 10px); pointer-events: none;
}
.hero-figure::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(200deg, rgba(227, 179, 65, .14), transparent 45%, rgba(18, 10, 17, .55));
  pointer-events: none;
}
.hero-caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2;
  padding: 14px 18px; border-radius: var(--r-md);
  background: rgba(33, 19, 31, .86); border: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-caption strong { font-family: var(--font-display); font-size: 1rem; display: block; }
.hero-caption span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

.hero-stamp {
  position: absolute; top: -22px; left: -22px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  border: 1px solid var(--gold); background: rgba(18, 10, 17, .9);
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; color: var(--gold);
  line-height: 1.5;
  animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- 7. Futósor ---------- */
.marquee {
  border-block: 1px solid var(--border-soft);
  overflow: hidden; padding: 18px 0;
  background: linear-gradient(90deg, rgba(194, 48, 107, .1), rgba(227, 179, 65, .06));
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; gap: var(--space-6); width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px; white-space: nowrap;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--muted);
}
.marquee-item::before { content: '✦'; color: var(--gold); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 8. Bento katalógus ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.bento .card--wide { grid-column: span 2; }
.bento .card--tall { grid-row: span 2; }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}
.card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface-2); }
.card--tall .card-media { aspect-ratio: 3 / 4; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.75) contrast(1.05);
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.06); filter: saturate(1) contrast(1); }
.card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 10, 17, .1) 30%, rgba(33, 19, 31, .96) 100%);
}
.card-tag {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(18, 10, 17, .8); border: 1px solid rgba(227, 179, 65, .45);
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.card-body { padding: var(--space-4) var(--space-4) var(--space-5); flex: 1; }
.card-body h3 { margin-bottom: var(--space-2); }
.card-body p { font-size: .95rem; color: var(--muted); margin-bottom: var(--space-3); }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono); font-size: .68rem; padding: 4px 11px; border-radius: var(--r-pill);
  border: 1px solid var(--border-soft); color: var(--muted);
}

/* jellemzők */
.feature {
  padding: var(--space-5); border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border-soft);
  transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}
.feature:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature-icon {
  width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 50%; margin-bottom: var(--space-4);
  border: 1px solid rgba(227, 179, 65, .5); color: var(--gold);
  background: rgba(227, 179, 65, .08);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; }
.feature p { font-size: .95rem; color: var(--muted); margin: 0; }

/* számozott lépések — függőleges idővonal */
.timeline { position: relative; padding-left: var(--space-6); }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--primary), transparent);
}
.timeline-item { position: relative; padding-bottom: var(--space-6); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: calc(-1 * var(--space-6) + 10px); top: 9px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold);
}
.timeline-item h3 { margin-bottom: var(--space-2); }
.timeline-item p { color: var(--muted); margin: 0; }
.timeline-step { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }

/* statisztika */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border-soft); border-radius: var(--r-lg); overflow: hidden; }
.stat { text-align: center; padding: var(--space-6) var(--space-3); border-right: 1px solid var(--border-soft); background: var(--surface); }
.stat:last-child { border-right: 0; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--gold); margin-bottom: 8px;
}
.stat span { font-size: .82rem; color: var(--muted); }

/* osztott blokk */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(227, 179, 65, .12), transparent 55%); }
.split-media--tall img { aspect-ratio: 3 / 4; }

/* pipás lista */
.check { list-style: none; padding: 0; margin: var(--space-4) 0 0; }
.check li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); font-size: .96rem; }
.check svg { width: 19px; height: 19px; flex: none; color: var(--gold); margin-top: 5px; }

/* idézetek */
.quote { padding: var(--space-5); border-radius: var(--r-lg); border: 1px solid var(--border-soft); background: var(--surface); position: relative; }
.quote::before {
  content: '”'; position: absolute; top: 6px; right: 20px;
  font-family: var(--font-display); font-size: 4.5rem; line-height: 1; color: var(--primary); opacity: .3;
}
.quote p { font-size: .99rem; margin-bottom: var(--space-4); font-style: italic; }
.quote footer { display: flex; align-items: center; gap: 13px; font-size: .87rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--primary), var(--gold)); color: #1B0F18;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
}
.quote footer span { display: block; color: var(--muted); font-size: .78rem; font-family: var(--font-mono); letter-spacing: .06em; }

/* ---------- 9. GYIK ---------- */
.faq { border-top: 1px solid var(--border-soft); }
.faq details { border-bottom: 1px solid var(--border-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--space-4) 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: ''; width: 14px; height: 14px; flex: none; position: relative;
  background:
    linear-gradient(var(--gold), var(--gold)) center/14px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 14px no-repeat;
  transition: transform var(--dur-mid) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .faq-body { padding: 0 0 var(--space-4); color: var(--muted); font-size: .97rem; max-width: 72ch; }
.faq details[open] .faq-body { animation: fade-down var(--dur-mid) var(--ease-out); }
@keyframes fade-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- 10. CTA sáv ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--space-7) var(--space-5);
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(194, 48, 107, .3), transparent 62%),
    var(--surface);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 38%, rgba(227, 179, 65, .12) 50%, transparent 62%);
  background-size: 220% 100%;
  animation: shine 7s var(--ease-out) infinite;
}
.cta-band > * { position: relative; z-index: 1; }

/* ---------- 11. Űrlapok ---------- */
.form { display: grid; gap: var(--space-4); }
.field { display: grid; gap: 7px; }
.field label { font-size: .87rem; font-weight: 600; }
.field label .req { color: var(--primary-soft); }
.field input, .field select, .field textarea {
  min-height: 50px; padding: 13px 15px;
  background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: var(--r-md);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7C6272; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(227, 179, 65, .18); outline: none;
}
.field .hint { font-size: .79rem; color: var(--muted); }
.field .error { font-size: .81rem; color: var(--primary-soft); display: none; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: var(--primary-soft); }
.field.is-invalid .error { display: block; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .89rem; color: var(--muted); }
.checkbox input { width: 22px; height: 22px; min-height: 0; flex: none; margin-top: 3px; accent-color: var(--primary); }
.form-status {
  display: none; padding: 15px 17px; border-radius: var(--r-md); font-size: .92rem;
  border: 1px solid var(--success); background: rgba(110, 194, 140, .12); color: #BFEBD0;
}
.form-status.is-visible { display: block; animation: fade-down var(--dur-mid) var(--ease-out); }

/* ---------- 12. Jogi / szöveges oldalak ---------- */
.page-head { padding: var(--space-7) 0 var(--space-6); border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.page-head::before {
  content: ''; position: absolute; inset: -80% 55% 0 -15%;
  background: radial-gradient(closest-side, rgba(194, 48, 107, .3), transparent);
}
.page-head > * { position: relative; }
.breadcrumb { font-family: var(--font-mono); font-size: .76rem; color: var(--muted); margin-bottom: var(--space-4); letter-spacing: .06em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

.prose { max-width: 76ch; }
.prose h2 { margin-top: var(--space-6); font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.prose h3 { margin-top: var(--space-5); }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--text); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-soft); }
.prose code { font-family: var(--font-mono); font-size: .86em; color: var(--primary-soft); }
.toc { padding: var(--space-4) var(--space-5); border: 1px solid var(--border-soft); border-radius: var(--r-lg); background: var(--surface); margin-bottom: var(--space-6); }
.toc h2 { margin: 0 0 var(--space-3); font-size: 1rem; }
.toc ol { margin: 0; columns: 2; column-gap: var(--space-5); }
.toc li { font-size: .9rem; }
.toc a { color: var(--muted); text-decoration: none; }
.toc a:hover { color: var(--gold); }

.table-wrap { overflow-x: auto; border: 1px solid var(--border-soft); border-radius: var(--r-md); margin-bottom: var(--space-4); }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: .9rem; }
th, td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--border-soft); }
th { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(227, 179, 65, .07); }
td { color: var(--muted); vertical-align: top; }
tr:last-child td { border-bottom: 0; }

.callout {
  padding: var(--space-4) var(--space-5); border-radius: var(--r-md);
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  background: rgba(227, 179, 65, .07); margin: var(--space-4) 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- 13. Lábléc ---------- */
.site-footer { border-top: 1px solid var(--border-soft); background: var(--bg-2); padding: var(--space-7) 0 var(--space-4); margin-top: var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: var(--space-5); }
.footer-grid h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-4); font-weight: 500; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { font-size: .92rem; color: var(--muted); transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out); }
.footer-grid a:hover { color: var(--gold); padding-left: 5px; }
.footer-about p { font-size: .91rem; color: var(--muted); }
.footer-bottom {
  margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--border-soft);
  display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--muted);
}
.footer-flags { display: flex; align-items: center; gap: 12px; }
.rating-badge {
  display: inline-grid; place-items: center; width: 44px; height: 44px; flex: none;
  border: 2px solid var(--primary-soft); border-radius: 50%;
  font-family: var(--font-display); font-weight: 900; font-size: .82rem; color: var(--primary-soft);
}

/* ---------- 14. Korkapu + süti sáv ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: none; align-items: center; justify-content: center; padding: var(--space-4);
  background: rgba(10, 5, 10, .86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.age-gate.is-open { display: flex; animation: fade-in var(--dur-mid) var(--ease-out); }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.age-gate-box {
  width: min(100%, 540px); text-align: center; padding: var(--space-6) var(--space-5);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  animation: pop-in var(--dur-slow) var(--ease-spring);
}
@keyframes pop-in { from { opacity: 0; transform: scale(.92) translateY(26px); } to { opacity: 1; transform: none; } }
.age-gate-box h2 { font-size: 1.7rem; }
.age-gate-box p { font-size: .95rem; color: var(--muted); margin-inline: auto; }
.age-gate-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-5); }
.age-gate-mark {
  width: 78px; height: 78px; margin: 0 auto var(--space-4); display: grid; place-items: center;
  border: 2px solid var(--gold); border-radius: 50%;
  font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--gold);
  box-shadow: 0 0 40px rgba(227, 179, 65, .3);
}
.age-gate-deny { display: none; }
.age-gate-deny.is-visible { display: block; margin-top: var(--space-4); color: var(--primary-soft); font-size: .92rem; }

.cookie-bar {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 150%);
  width: min(100% - 2rem, 940px); z-index: var(--z-overlay);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5); border-radius: var(--r-lg);
  background: rgba(33, 19, 31, .97); border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  transition: transform var(--dur-slow) var(--ease-out);
}
.cookie-bar.is-open { transform: translate(-50%, 0); }
.cookie-bar p { flex: 1 1 320px; margin: 0; font-size: .88rem; color: var(--muted); }
.cookie-bar a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* ---------- 15. Görgetéses felfedés ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
/* képekhez: függönyszerű maszk */
[data-reveal="mask"] { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path var(--dur-slow) var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal="mask"].is-visible { clip-path: inset(0 0 0 0); }

/* ---------- 16. Reszponzivitás ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-figure { max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card--wide { grid-column: span 2; }
  .bento .card--tall { grid-row: span 1; }
  .bento .card--tall .card-media { aspect-ratio: 16 / 10; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 78px 0 auto; z-index: var(--z-sticky);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--space-3) var(--space-4) var(--space-5);
    background: rgba(18, 10, 17, .99); border-bottom: 1px solid var(--border);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 15px 4px; font-size: 1.02rem; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .nav a::after { display: none; }
  .header-actions .age-chip { display: none; }
  .split, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
  .toc ol { columns: 1; }
  .section { padding: var(--space-7) 0; }
  .hero-stamp { width: 74px; height: 74px; top: -14px; left: -6px; font-size: .5rem; }
}
@media (max-width: 560px) {
  .grid-4, .bento, .bento .card--wide { grid-template-columns: 1fr; grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .timeline { padding-left: var(--space-5); }
  .timeline-item::before { left: calc(-1 * var(--space-5) + 10px); }
}

/* ---------- 17. Csökkentett mozgás ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal="mask"] { clip-path: none; }
  .split-char { opacity: 1; transform: none; }
  .hero-bg img { transform: none !important; }
  .shine { animation: none; background: none; -webkit-text-fill-color: currentColor; color: var(--text); }
}

/* ---------- 18. Nyomtatás ---------- */
@media print {
  .site-header, .site-footer, .cookie-bar, .age-gate, .hero-bg, .progress-bar { display: none !important; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
  .prose a { color: #000; }
}
