/* ══════════════════════════════════════════════════
   LÁSS VELÜNK! – style.css
   ══════════════════════════════════════════════════ */

:root {
    --cream:     #faf8f4;
    --warm:      #f3ede3;
    --butter:    #e8e0d0;
    --butter-d:  #ddd5c2;
    --gold:      #b8976a;
    --gold-lt:   #d4b896;
    --gold-pale: rgba(184,151,106,.12);
    --ink:       #1e1c18;
    --ink-soft:  #3a3730;
    --muted:     #7a7568;
    --border:    #ddd8ce;
    --card:      #fdf9f4;
    --r:         14px;
    --r-sm:      8px;
    --tr:        .32s cubic-bezier(.4,0,.2,1);
    --shadow:    0 8px 40px rgba(80,60,20,.09);
    --shadow-sm: 0 2px 16px rgba(80,60,20,.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,.serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Skip link (akadálymentesség) ── */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--gold); color: #fff;
    padding: .5rem 1rem; z-index: 9999;
    border-radius: 0 0 var(--r-sm) 0;
    font-size: .85rem; font-family: 'Jost', sans-serif;
    transition: top var(--tr);
}
.skip-link:focus { top: 0; color: #fff; }

/* ── Idézet sáv ── */
.quote-bar {
    background: var(--ink);
    padding: .65rem 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    letter-spacing: .015em;
}
.quote-author { color: var(--gold-lt); }

/* ── Navbar ── */
.navbar {
    background: rgba(250,248,244,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: .85rem 0;
    position: sticky; top: 0; z-index: 1000;
    transition: box-shadow var(--tr);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(80,60,20,.08); }

.navbar-brand { display: flex; flex-direction: column; text-decoration: none; }
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -.01em;
}
.navbar-brand small {
    font-family: 'Jost', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.navbar-toggler { border: none; background: none; color: var(--ink); padding: 0; }
.navbar-toggler i { font-size: 1.5rem; }

.nav-link {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-soft) !important;
    padding: .4rem .9rem !important;
    transition: color var(--tr);
    position: relative;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link.active { color: var(--gold) !important; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: .9rem; right: .9rem;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-cta {
    background: var(--gold) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: .4rem 1.2rem !important;
    transition: background var(--tr) !important;
}
.nav-cta:hover { background: var(--ink) !important; }
.nav-cta.active::after { display: none; }

/* ── Gombok ── */
.btn-gold {
    background: var(--gold); color: #fff; border: none;
    border-radius: 50px; padding: .85rem 2.2rem;
    font-family: 'Jost', sans-serif; font-size: .8rem;
    font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all var(--tr);
    box-shadow: 0 4px 20px rgba(184,151,106,.3);
}
.btn-gold:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,28,24,.18); }

.btn-outline {
    background: transparent; color: var(--ink-soft);
    border: 1.5px solid var(--border); border-radius: 50px;
    padding: .85rem 2rem; font-family: 'Jost', sans-serif;
    font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: .5rem;
    transition: all var(--tr);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-youtube {
    background: #ff0000; color: #fff; border: none;
    border-radius: 50px; padding: .85rem 2.2rem;
    font-family: 'Jost', sans-serif; font-size: .8rem;
    font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all var(--tr);
    box-shadow: 0 4px 20px rgba(255,0,0,.25);
    text-decoration: none;
}
.btn-youtube:hover { background: #cc0000; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,0,0,.3); }

.btn-white {
    background: #fff; color: var(--ink); border-radius: 50px;
    padding: .9rem 2.4rem; font-family: 'Jost', sans-serif;
    font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: .5rem;
    transition: all var(--tr);
}
.btn-white:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

.btn-link-gold {
    color: var(--gold); font-size: .83rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: .35rem;
    transition: gap var(--tr);
}
.btn-link-gold:hover { gap: .65rem; }

/* ── Közös szekció ── */
section { padding: 90px 0; }
.sec-label {
    font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; display: block; margin-bottom: .75rem;
}
.sec-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.12; color: var(--ink); }
.sec-sub { color: var(--muted); font-size: .93rem; max-width: 520px; line-height: 1.85; font-weight: 300; }
.gold-rule { width: 44px; height: 2px; background: var(--gold); border-radius: 2px; margin: 1.2rem 0; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

.bg-warm  { background: var(--warm); }
.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); }

/* ── Hero ── */
.hero-section {
    min-height: 88vh; display: flex; align-items: center;
    background: linear-gradient(150deg, var(--warm) 0%, var(--cream) 55%, var(--butter) 100%);
    position: relative; overflow: hidden; padding: 80px 0;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse 600px 500px at 80% 40%, rgba(184,151,106,.10) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 10% 80%, rgba(184,151,106,.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-deco {
    position: absolute; right: -40px; top: 50%;
    transform: translateY(-50%);
    font-size: 26rem; color: rgba(184,151,106,.05);
    font-family: 'Cormorant Garamond', serif;
    pointer-events: none; line-height: 1; user-select: none;
}
.hero-eyebrow {
    font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold-lt); }
.hero-h1 {
    font-size: clamp(3rem, 6.5vw, 6rem); line-height: 1.04;
    color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-lead { font-size: 1.05rem; color: var(--muted); max-width: 480px; line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; }

/* ── Page hero (belső oldalak) ── */
.page-hero {
    background: linear-gradient(155deg, var(--warm) 0%, var(--butter) 60%, var(--cream) 100%);
    padding: 70px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -60px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,151,106,.12) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.page-hero-eyebrow {
    font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-lt); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.06; color: var(--ink); margin-bottom: .8rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.85; font-weight: 300; }

/* ── Breadcrumb ── */
.breadcrumb-bar { background: var(--warm); border-bottom: 1px solid var(--border); padding: .7rem 0; }
.breadcrumb { font-size: .78rem; margin: 0; }
.breadcrumb-item a { color: var(--muted); transition: color var(--tr); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--ink-soft); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--border); }

/* ── Kártya ── */
.card-base {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
}
.card-base:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* ── Avatar ── */
.avatar {
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-weight: 600; color: #fff;
    flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.25);
}
.avatar-md { width: 62px; height: 62px; font-size: 1.4rem; }
.avatar-lg { width: 90px; height: 90px; font-size: 2rem; }
.avatar-xl { width: 120px; height: 120px; font-size: 2.8rem; }

/* ── Tag ── */
.tag {
    font-size: .7rem; letter-spacing: .06em; background: var(--butter);
    color: var(--ink-soft); border-radius: 50px; padding: .22rem .85rem;
    border: 1px solid var(--border); display: inline-block;
}

/* ── Narrátor kártya ── */
.narrator-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); overflow: hidden; height: 100%;
    display: flex; flex-direction: column;
    transition: transform var(--tr), box-shadow var(--tr);
}
.narrator-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.narrator-card-top {
    padding: 2rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 1.1rem;
}
.narrator-card-name { font-size: 1.3rem; color: var(--ink); margin-bottom: .1rem; }
.narrator-card-role { font-size: .73rem; color: var(--muted); letter-spacing: .06em; }
.narrator-card-body { padding: 1.5rem 2rem; flex: 1; }
.narrator-card-body p { font-size: .87rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.narrator-card-tags { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0 2rem 1.5rem; }
.narrator-card-footer {
    padding: 1.25rem 2rem; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}

/* ── Hangminta ── */
.audio-block {
    background: var(--butter); border: 1px solid var(--border);
    border-radius: var(--r-sm); padding: 1rem 1.4rem;
    display: flex; align-items: center; gap: 1rem;
    margin: 1rem 0;
}
.audio-block i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.audio-block p { font-size: .82rem; color: var(--muted); margin: 0; font-weight: 300; }
.audio-block audio { width: 100%; margin-top: .35rem; }
.audio-wrap { display: flex; flex-direction: column; flex: 1; gap: .3rem; }

/* ── Képleírás ── */
.img-desc-toggle {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .72rem; color: var(--gold); cursor: pointer;
    background: none; border: 1px solid rgba(184,151,106,.3);
    border-radius: 50px; padding: .28rem .75rem;
    transition: background var(--tr); font-family: 'Jost', sans-serif;
    margin-top: .5rem;
}
.img-desc-toggle:hover { background: rgba(184,151,106,.1); }
.img-desc-panel {
    display: none; background: var(--butter);
    border-radius: var(--r-sm); padding: .9rem 1.1rem;
    font-size: .82rem; color: var(--ink-soft); line-height: 1.75;
    margin-top: .5rem; border-left: 3px solid var(--gold);
    font-weight: 300;
}
.img-desc-panel.open { display: block; }

/* ── Tanácsadó kártya ── */
.advisor-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.75rem;
    display: flex; align-items: flex-start; gap: 1.1rem;
    height: 100%; transition: transform var(--tr), box-shadow var(--tr);
}
.advisor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.advisor-name { font-size: 1.1rem; color: var(--ink); margin-bottom: .2rem; }
.advisor-desc { font-size: .83rem; color: var(--muted); line-height: 1.78; font-weight: 300; }

/* ── Narrátor profil oldal ── */
.profile-hero {
    background: linear-gradient(150deg, var(--warm) 0%, var(--butter) 60%, var(--cream) 100%);
    padding: 70px 0; position: relative; overflow: hidden;
}
.profile-bio { font-size: .95rem; color: var(--ink-soft); line-height: 1.9; font-weight: 300; }
.profile-info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.profile-info-row:last-child { border-bottom: none; }
.profile-info-label { color: var(--muted); }
.profile-info-val { color: var(--ink); font-weight: 500; }

/* ── Referencia elem ── */
.ref-item {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm);
    padding: .9rem 1.3rem; display: flex; align-items: flex-start; gap: .75rem;
    font-size: .87rem; color: var(--ink-soft);
    transition: border-color var(--tr), transform var(--tr);
}
.ref-item:hover { border-color: var(--gold-lt); transform: translateX(3px); }
.ref-item i { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }

.ref-link-item {
    display: flex; align-items: center; gap: .6rem;
    padding: .75rem 1rem; border-radius: var(--r-sm);
    font-size: .85rem; color: var(--gold);
    transition: background var(--tr); border: 1px solid rgba(184,151,106,.25);
}
.ref-link-item:hover { background: rgba(184,151,106,.08); }
.ref-link-item i { font-size: .85rem; }
.ref-link-item .arrow { margin-left: auto; }

/* ── Audionarráció oldal ── */
.info-box {
    background: var(--butter); border: 1px solid var(--border);
    border-radius: var(--r-sm); padding: 1.5rem;
    border-left: 4px solid var(--gold);
}
.info-box h5 { font-size: 1.2rem; color: var(--ink); margin-bottom: .5rem; }
.info-box p { font-size: .87rem; color: var(--muted); margin: 0; font-weight: 300; line-height: 1.8; }

/* ── CTA blokk ── */
.cta-block {
    background: linear-gradient(135deg, var(--ink) 0%, #2c2a24 100%);
    padding: 100px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-block::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(184,151,106,.12) 0%, transparent 65%);
    pointer-events: none;
}
.cta-block h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: #fff; margin-bottom: 1rem; }
.cta-block h2 em { font-style: italic; color: var(--gold-lt); }
.cta-block p { color: rgba(255,255,255,.5); font-size: .95rem; margin-bottom: 2.5rem; font-weight: 300; }

/* ── Kapcsolat ── */
.contact-info-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.3rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r-sm); margin-bottom: .75rem;
}
.contact-info-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold-pale); display: flex; align-items: center;
    justify-content: center; color: var(--gold); flex-shrink: 0;
}
.contact-info-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .1rem; }
.contact-info-val { font-size: .9rem; color: var(--ink); font-weight: 400; }

.form-label { font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; font-weight: 500; }
.form-control, .form-select {
    background: var(--cream); border: 1.5px solid var(--border);
    border-radius: var(--r-sm); color: var(--ink);
    font-family: 'Jost', sans-serif; font-size: .9rem;
    padding: .75rem 1rem; transition: border-color var(--tr), box-shadow var(--tr);
}
.form-control:focus, .form-select:focus {
    background: var(--cream); border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,151,106,.14);
    color: var(--ink); outline: none;
}
.form-control::placeholder { color: var(--butter-d); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Logo leírás box ── */
.logo-leiras-box {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.75rem; margin-top: 1.5rem;
}
.logo-leiras-box p { font-size: .85rem; color: var(--muted); line-height: 1.8; font-weight: 300; margin: 0; }

/* ── Szemléletformáló galériakép ── */
.gallery-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--r-sm); overflow: hidden;
    transition: transform var(--tr);
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-caption {
    padding: .9rem 1.1rem; font-size: .82rem; color: var(--muted);
    line-height: 1.7; font-weight: 300;
    border-top: 1px solid var(--border);
}

/* ── Footer ── */
footer { background: var(--ink); padding: 4rem 0 2rem; }
.footer-brand { display: block; }
.footer-brand span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #fff; display: block; line-height: 1.2; }
.footer-brand small { font-family: 'Jost', sans-serif; font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); display: block; margin-top: .1rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.35); margin-top: .4rem; font-weight: 300; }
.footer-about { font-size: .82rem; color: rgba(255,255,255,.28); line-height: 1.75; font-weight: 300; max-width: 280px; }
.footer-heading { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-link { display: block; color: rgba(255,255,255,.42); font-size: .82rem; margin-bottom: .45rem; transition: color var(--tr); font-weight: 300; }
.footer-link:hover { color: var(--gold-lt); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 2rem 0; }
.footer-copy { font-size: .73rem; color: rgba(255,255,255,.2); font-weight: 300; }
.social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4); transition: all var(--tr); font-size: .9rem;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-deco { font-size: 10rem; right: -20px; }
    .nav-link.active::after { display: none; }
}
@media (max-width: 767px) {
    section { padding: 65px 0; }
    .hero-section { min-height: auto; padding: 60px 0; }
    .hero-deco { display: none; }
    .cta-block { padding: 70px 0; }
    .narrator-card-top { flex-direction: column; align-items: flex-start; }
    .narrator-card-body, .narrator-card-tags { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ── Navbar brand – logo + szöveg egymás mellett ── */
.navbar-brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: .7rem;
    text-decoration: none;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
    display: block;
}
.brand-sub {
    font-family: 'Jost', sans-serif;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    display: block;
    margin-top: .15rem;
}

/* ── Kör avatar kártya ── */
.avatar-card-wrap {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.75rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.avatar-circle {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2.5px solid var(--gold-lt);
    box-shadow: 0 2px 12px rgba(184,151,106,.2);
    cursor: pointer;
    transition: transform var(--tr), box-shadow var(--tr);
    position: relative;
}
.avatar-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(184,151,106,.35);
}
.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.avatar-circle .zoom-hint {
    position: absolute;
    inset: 0;
    background: rgba(30,28,24,.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--tr);
    border-radius: 50%;
    color: #fff;
    font-size: .9rem;
}
.avatar-circle:hover .zoom-hint { opacity: 1; }

.avatar-circle-initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold-lt);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Lightbox ── */
.lv-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,18,14,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: zoom-out;
}
.lv-lightbox.open { display: flex; }
.lv-lightbox img {
    max-width: min(520px, 90vw);
    max-height: 85vh;
    border-radius: var(--r);
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
    cursor: default;
}
.lv-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: rgba(255,255,255,.7);
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color var(--tr);
}
.lv-lightbox-close:hover { color: #fff; }
.lv-lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.65);
    font-size: .83rem;
    letter-spacing: .05em;
    white-space: nowrap;
}


/* =========================================================
   VENDÉGNARRÁTOROK – KIEGÉSZÍTŐ STÍLUSOK
   ========================================================= */

/* Vendégnarrátor szekció a narrátor lista alatt */
.guest-narrators-section {
    background: var(--cream, #faf8f4);
    padding: 5rem 0;
    border-top: 2px dashed var(--border, #e8e0d0);
    margin-top: 0;
}

/* Vendégnarrátor kártya stílus – a meglévő narrator-card-ra épül */
.narrator-card--guest {
    position: relative;
    border-top: 3px solid var(--gold, #b8973a);
}

/* Vendégnarrátor badge a kártya tetején */
.guest-narrator-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-pale, #fdf6e3);
    color: var(--gold, #b8973a);
    border: 1px solid var(--gold, #b8973a);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
