/* ===========================================================
   MILLENNIUM SZIVAR KLUB — stíluslap
   Klasszikus, elegáns, sötét. Cormorant Garamond / Cinzel / EB Garamond
   =========================================================== */

:root {
  --ink: #0c0a07;
  --espresso: #14100b;
  --walnut: #1d150d;
  --leather: #271a10;
  --gold: #c8a24a;
  --gold-soft: #ddbd72;
  --gold-deep: #a8842f;
  --cream: #ece3d2;
  --ash: #a4977f;
  --ash-dim: #6f6552;
  --line: rgba(200, 162, 74, 0.16);
  --line-strong: rgba(200, 162, 74, 0.34);
  --line-soft: rgba(236, 227, 210, 0.08);

  --display: "Cormorant Garamond", Georgia, serif;
  --body: "EB Garamond", Georgia, serif;
  --caps: "Cinzel", Georgia, serif;

  --maxw: 1240px;
  --side: clamp(24px, 6.5vw, 116px);
  --grain: 0.04;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* smoke glow + grain overlays */
.atmosphere::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 82% -10%, rgba(200,162,74,0.09), transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(120,70,30,0.13), transparent 60%);
}
.atmosphere::after {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: var(--grain);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow.dim { color: var(--ash-dim); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; }
em.gold { font-style: italic; color: var(--gold-soft); font-weight: 500; }

.section-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.lede {
  font-family: var(--display);
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.4;
  color: #d8cdb8;
}
.body-copy { color: var(--ash); }
.body-copy strong { color: var(--cream); font-weight: 500; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--side); position: relative; z-index: 2; }
section { position: relative; z-index: 2; }
.hairline { height: 1px; background: var(--line); border: 0; }

/* section header pattern */
.sec-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 48px; }
.sec-head .num { display: none; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--caps);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 30px;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 11px;
  transition: all .35s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
}
.btn-solid { background: var(--gold); color: #1a1208; }
.btn-solid:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(200,162,74,0.06); }
.btn .play-ico { width: 9px; height: 11px; display: inline-block; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--side);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,10,7,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 13px var(--side);
}
.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-logo img { width: 54px; height: 54px; object-fit: contain; transition: width .4s ease, height .4s ease; }
.nav.scrolled .nav-logo img { width: 46px; height: 46px; }
.nav-logo .nl-txt { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .nl-txt .nl-1 { font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1; }
.nav-logo .nl-txt .nl-2 { font-family: var(--caps); font-size: 9px; letter-spacing: 0.22em; color: var(--ash); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--caps); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); opacity: .8; transition: opacity .25s, color .25s; position: relative; white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: var(--gold-soft); }
.lang-toggle { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 2px; overflow: hidden; }
.lang-toggle button {
  font-family: var(--caps); font-size: 11px; letter-spacing: 0.1em; padding: 7px 11px;
  background: transparent; color: var(--ash); border: 0; transition: all .25s;
}
.lang-toggle button.active { background: var(--gold); color: #1a1208; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.lang-toggle.lang-mobile { display: none; margin-left: auto; margin-right: 14px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--cream); display: block; }
.nav-mobile { display: none; }

/* ---------- HERO (A · szimmetrikus) ---------- */
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 38%; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(58% 46% at 50% 40%, rgba(214,176,92,0.14), transparent 62%),
    radial-gradient(80% 68% at 50% 42%, rgba(12,10,7,0.04), rgba(12,10,7,0.42) 72%, rgba(12,10,7,0.86)),
    linear-gradient(to bottom, rgba(12,10,7,0.38), rgba(12,10,7,0.16) 28%, rgba(12,10,7,0.52) 70%, var(--ink));
}
.hero-inner { position: relative; z-index: 3; padding: 120px 24px 150px; display: flex; flex-direction: column; align-items: center; }
/* lágy, elmosódott sötét „spotlight" a logó és a központi szöveg mögött, hogy ne olvadjon a háttérbe */
.hero-inner::before {
  content: "";
  position: absolute; left: 50%; top: 41%; transform: translate(-50%, -50%);
  width: min(820px, 92vw); height: min(720px, 78vh);
  background: radial-gradient(ellipse at center,
    rgba(6,5,3,0.66) 0%, rgba(6,5,3,0.50) 34%, rgba(6,5,3,0.24) 56%, rgba(6,5,3,0) 74%);
  z-index: -1; pointer-events: none; filter: blur(14px);
}
.hero-crest { width: clamp(250px, 34vw, 480px); height: auto; object-fit: contain; position: relative; filter: drop-shadow(0 4px 22px rgba(0,0,0,0.55)); }
.hero-eyebrow { margin-top: 12px; font-size: clamp(13px, 1.5vw, 17px); font-weight: 600; letter-spacing: 0.3em; }
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(38px, 6.2vw, 86px);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.01em;
  margin-top: 22px; white-space: nowrap;
}
.hero-tagline-brand {
  display: block; margin-top: 20px;
  font-family: var(--caps); font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.hero-tagline em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
.hero-sub { margin-top: 32px; color: #cabfa9; font-size: clamp(17px,1.5vw,20px); max-width: 46ch; line-height: 1.5; }
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--caps); font-size: 10px; letter-spacing: 0.24em; color: var(--ash-dim); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .ln { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); }
/* ne csússzon össze a CTA-kkal alacsony vagy mobil képernyőn: rejtsük el a görgess-jelzőt */
@media (max-height: 820px) { .hero-scroll { display: none; } }
@media (max-width: 720px) {
  .hero-inner { padding: 104px 22px 96px; }
  .hero-scroll { display: none; }
}

/* ---------- ABOUT ---------- */
.about { padding-block: 130px; border-top: 1px solid var(--line-soft); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy .p + .p { margin-top: 18px; }
.about-figure { position: relative; }
.about-figure img.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-figure .figtag {
  position: absolute; bottom: 18px; left: 18px; font-family: var(--caps);
  font-size: 10px; letter-spacing: 0.2em; color: var(--cream); text-transform: uppercase;
  background: rgba(12,10,7,0.65); padding: 8px 13px; border: 1px solid var(--line);
}
.stats { display: flex; gap: 46px; margin-top: 44px; flex-wrap: wrap; }
.stat .sv { font-family: var(--display); font-size: 46px; font-weight: 600; line-height: 1; color: var(--gold-soft); }
.stat .sl { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); margin-top: 8px; }

/* ---------- EVENTS ---------- */
.events { padding-block: 120px; border-top: 1px solid var(--line-soft); }
.events-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 54px; flex-wrap: wrap; }
.events-list { display: flex; flex-direction: column; }
.event-card {
  border-top: 1px solid var(--line);
  padding: 34px 8px;
  display: grid; grid-template-columns: 150px 120px 1fr auto; gap: 32px; align-items: center;
  transition: background .35s ease, padding-left .35s ease;
}
.event-card:last-child { border-bottom: 1px solid var(--line); }
.event-card:hover { background: linear-gradient(90deg, rgba(39,26,16,0.4), transparent 70%); padding-left: 18px; }
.event-cover { display: block; width: 150px; height: 96px; overflow: hidden; }
.event-cover img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); display: block; transition: filter .25s ease, transform .5s ease; }
.event-cover:hover img { filter: brightness(1.08); transform: scale(1.04); }
.event-date { text-align: center; border-right: 1px solid var(--line); padding-right: 30px; }
.event-date .d { font-family: var(--display); font-size: 56px; font-weight: 600; line-height: .9; color: var(--cream); }
.event-date .m { font-family: var(--caps); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.event-date .y { font-family: var(--caps); font-size: 12px; letter-spacing: 0.18em; color: var(--ash-dim); margin-top: 3px; }
.event-info .ev-kicker { font-family: var(--caps); font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 9px; }
.event-info .ev-title { font-family: var(--display); font-size: clamp(24px,2.6vw,32px); font-weight: 600; line-height: 1.08; }
.event-info .ev-title-link { color: inherit; transition: color .25s; }
.event-info .ev-title-link:hover { color: var(--gold-soft); }
.event-info .ev-more { display: inline-block; margin-top: 13px; font-family: var(--caps); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); transition: color .25s, transform .25s; }
.event-info .ev-more:hover { color: var(--gold-soft); transform: translateX(3px); }
.event-info .ev-meta { display: flex; gap: 22px; margin-top: 13px; flex-wrap: wrap; }
.event-info .ev-meta span { font-family: var(--caps); font-size: 13px; letter-spacing: 0.08em; color: var(--ash); display: inline-flex; align-items: center; gap: 8px; }
.event-info .ev-meta span::before { content: ""; width: 4px; height: 4px; background: var(--gold-deep); border-radius: 50%; display: inline-block; }
.event-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.event-seats { font-family: var(--caps); font-size: 12px; letter-spacing: 0.12em; color: var(--ash-dim); text-transform: uppercase; }
.event-seats.low { color: var(--gold-deep); }
.event-recur {
  margin-top: 30px; padding: 22px 26px; border: 1px dashed var(--line-strong);
  display: flex; gap: 30px; align-items: center; flex-wrap: wrap; justify-content: center; text-align: center;
}
.event-recur .rg { font-family: var(--caps); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); display: inline-flex; align-items: center; gap: 9px; }
.event-recur .rg b { color: var(--gold-soft); font-weight: 500; }

/* ---------- GALLERY ---------- */
.gallery { padding: 120px 0; border-top: 1px solid var(--line-soft); }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 46px; }
.gal-arrows { display: flex; gap: 12px; flex-shrink: 0; }
.gal-arrows button {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: transparent; color: var(--gold); display: grid; place-items: center; transition: all .3s ease;
}
.gal-arrows button:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); }
.gal-scroller {
  display: flex; gap: 18px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-padding-left: var(--side);
  padding: 6px var(--side) 22px;
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.gal-scroller::-webkit-scrollbar { height: 6px; }
.gal-scroller::-webkit-scrollbar-track { background: var(--line-soft); }
.gal-scroller::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.gal-card {
  flex: 0 0 clamp(280px, 30%, 400px); aspect-ratio: 4/5; position: relative; overflow: hidden;
  scroll-snap-align: start; margin: 0; border: 1px solid var(--line-soft);
}
.gal-card img.gal-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(.2,.7,.3,1); }
.gal-card:hover img.gal-img { transform: scale(1.05); }
.gal-card .gcap {
  position: absolute; left: 16px; bottom: 14px; z-index: 4; pointer-events: none;
  font-family: var(--caps); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: rgba(12,10,7,0.55); padding: 7px 12px; border: 1px solid var(--line);
}
.gal-end { flex: 0 0 1px; }

/* ---------- MEMBERSHIP ---------- */
.member { padding-block: 130px; border-top: 1px solid var(--line-soft); }
.member-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.member-left h2 { margin-bottom: 24px; }
.member-list { list-style: none; margin-top: 34px; }
.member-list li { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); align-items: baseline; }
.member-list li .mi { font-family: var(--caps); font-size: 12px; color: var(--gold); flex-shrink: 0; width: 30px; }
.member-list li .mt { font-family: var(--display); font-size: 22px; font-weight: 600; }
.member-list li .md { color: var(--ash); font-size: 15.5px; margin-top: 4px; }
.member-card {
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(39,26,16,0.45), rgba(12,10,7,0.5));
  padding: 46px; position: relative; overflow: hidden;
}
.member-card .mc-crest { position: absolute; right: -40px; top: -40px; width: 200px; opacity: .08; }
.member-card h3 { font-size: 34px; margin-bottom: 8px; }
.member-card .mc-price { font-family: var(--display); font-size: 30px; color: var(--gold-soft); margin: 22px 0 6px; }
.member-card .mc-note { color: var(--ash); font-size: 14.5px; }
.member-card .btn { margin-top: 30px; width: 100%; justify-content: center; }

/* ---------- CONTACT / NEWSLETTER ---------- */
.contact { padding-block: 120px; border-top: 1px solid var(--line-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info .ci-row { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-info .ci-row .ci-l { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash-dim); margin-bottom: 7px; }
.contact-info .ci-row .ci-v { font-family: var(--display); font-size: 22px; color: var(--cream); }
.newsletter { border: 1px solid var(--line); padding: 44px; background: rgba(20,16,11,0.5); }
.newsletter h3 { font-size: 30px; margin-bottom: 12px; }
.newsletter p { color: var(--ash); font-size: 15.5px; margin-bottom: 26px; }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-form .field { flex: 1; min-width: 200px; }

/* contact links + whatsapp + form */
.ci-link { transition: color .25s; }
.ci-link:hover { color: var(--gold-soft); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 34px;
  font-family: var(--caps); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 26px; border: 1px solid #2e7d50; color: #cfe9d8; background: rgba(37,120,70,0.14);
  transition: all .3s ease;
}
.btn-whatsapp svg { color: #3ad07f; transition: color .3s ease; }
.btn-whatsapp:hover { background: #1f7a4d; border-color: #1f7a4d; color: #fff; }
.btn-whatsapp:hover svg { color: #fff; }
.contact-form { border: 1px solid var(--line); padding: 44px; background: rgba(20,16,11,0.5); }
.contact-form h3 { font-size: 30px; font-weight: 600; margin-bottom: 10px; }
.contact-form .cf-text { color: var(--ash); font-size: 15px; margin-bottom: 26px; }
.contact-form .field { margin-bottom: 16px; }
.contact-form textarea {
  font-family: var(--body); font-size: 17px; color: var(--cream);
  background: rgba(12,10,7,0.6); border: 1px solid var(--line-strong); border-radius: 0;
  padding: 13px 15px; width: 100%; resize: vertical; transition: border-color .25s, background .25s;
}
.contact-form textarea::placeholder { color: var(--ash-dim); }
.contact-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(20,16,11,0.8); }
.form-err { color: var(--gold-deep); font-family: var(--caps); font-size: 11px; letter-spacing: 0.06em; margin-bottom: 14px; }
.form-success { text-align: center; padding: 54px 20px; }
.form-success .ms-ico { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; color: var(--gold); font-size: 24px; }
.form-success p { font-family: var(--display); font-size: 23px; color: var(--cream); }

/* ---------- FORM fields ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); }
.field input, .field select {
  font-family: var(--body); font-size: 17px; color: var(--cream);
  background: rgba(12,10,7,0.6); border: 1px solid var(--line-strong); border-radius: 0;
  padding: 13px 15px; transition: border-color .25s, background .25s; width: 100%;
}
.field input::placeholder { color: var(--ash-dim); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgba(20,16,11,0.8); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a24a' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); background: rgba(12,10,7,0.6); }
.stepper button { width: 46px; height: 48px; background: none; border: 0; color: var(--gold); font-size: 20px; font-family: var(--display); }
.stepper button:hover { background: rgba(200,162,74,0.08); }
.stepper .val { width: 56px; text-align: center; font-family: var(--display); font-size: 22px; color: var(--cream); }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,5,3,0.78); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: var(--espresso); border: 1px solid var(--line-strong);
  position: relative; transform: translateY(14px) scale(.98); transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-x { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: var(--cream); font-size: 18px; display: grid; place-items: center; z-index: 5; transition: all .25s; }
.modal-x:hover { border-color: var(--gold); color: var(--gold); }
.modal-head { padding: 40px 44px 0; }
.modal-head .mh-kick { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.modal-head h3 { font-size: 32px; line-height: 1.05; }
.modal-head .mh-meta { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.modal-head .mh-meta span { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.08em; color: var(--ash); }
.modal-body { padding: 28px 44px 44px; display: flex; flex-direction: column; gap: 20px; }
.modal-success { padding: 60px 44px; text-align: center; }
.modal-success .ms-ico { width: 58px; height: 58px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 24px; color: var(--gold); font-size: 26px; }
.modal-success h3 { font-size: 30px; margin-bottom: 12px; }
.modal-success p { color: var(--ash); }
.modal-head .mh-lede { color: var(--ash); font-size: 14px; line-height: 1.5; margin-top: 10px; }

/* CTA band (értesítés-feliratkozás) */
.cta-band { padding: 24px 0 6px; }
.cta-band-inner { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(39,26,16,0.40), rgba(12,10,7,0.5)); padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 60px); text-align: center; }
.cta-band-title { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; margin: 12px 0 14px; }
.cta-band-text { color: #c5b9a4; font-size: 17px; max-width: 54ch; margin: 0 auto 28px; }

/* story CTA — a „Millennium szelleme" blokk alatt */
.story-cta { padding: 18px 0 40px; }
.story-cta-inner { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(39,26,16,0.40), rgba(12,10,7,0.5)); padding: clamp(38px, 5.5vw, 64px) clamp(24px, 5vw, 60px); text-align: center; }
.story-cta-title { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.06; margin: 12px 0 12px; }
.story-cta-text { color: #c5b9a4; font-size: 17px; max-width: 52ch; margin: 0 auto 26px; line-height: 1.5; }
.story-cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* footer extras */
.footer-gdpr { font-family: var(--caps); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); transition: color .25s; }
.footer-gdpr:hover { color: var(--gold-soft); }
.footer-quote { margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--line-soft); text-align: center; }
.footer-quote .fq-name { font-family: var(--caps); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-quote .fq-text { font-family: var(--display); font-style: italic; font-size: clamp(18px, 2vw, 24px); color: var(--cream); line-height: 1.5; max-width: 60ch; margin: 0 auto; }
.footer-quote .fq-author { font-family: var(--caps); font-size: 11px; letter-spacing: 0.14em; color: var(--ash); margin-top: 14px; }

/* GDPR modal */
.gdpr-modal { max-width: 760px; }
.gdpr-body { max-height: 80vh; overflow-y: auto; padding: clamp(36px, 5vw, 48px) clamp(24px, 4vw, 44px) 36px; }
.gdpr-body .gdpr-title { font-family: var(--display); font-size: 30px; font-weight: 600; margin: 6px 0 18px; }
.gdpr-body h4 { font-family: var(--caps); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 22px 0 8px; }
.gdpr-body p { color: #c5b9a4; font-size: 15px; line-height: 1.62; margin-bottom: 8px; }
.gdpr-body ul { color: #c5b9a4; font-size: 15px; line-height: 1.62; margin: 4px 0 10px; padding-left: 20px; }
.gdpr-body li { margin-bottom: 5px; }
.gdpr-body a { color: var(--gold-soft); text-decoration: underline; }
.gdpr-body b { color: var(--cream); }

/* Előadóink voltak */
.speakers-head { margin-bottom: 42px; }
.speakers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.2vw, 30px); }
.speaker-card { margin: 0; }
.speaker-photo { aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--line); background: var(--espresso); display: block; width: 100%; padding: 0; margin: 0; cursor: zoom-in; }
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.15) contrast(1.02); transition: transform .55s ease, filter .35s ease; }
.speaker-card:hover .speaker-photo img { transform: scale(1.05); filter: grayscale(0); }

/* speaker lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(6,5,3,0.92); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 24px; cursor: zoom-out; animation: lb-in .25s ease; }
.lightbox img { max-width: 94vw; max-height: 92vh; object-fit: contain; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,0.6); cursor: default; }
.lightbox-x { position: fixed; top: 22px; right: 24px; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(12,10,7,0.65); color: var(--cream); font-size: 18px; line-height: 1; display: grid; place-items: center; cursor: pointer; z-index: 301; transition: border-color .2s ease, color .2s ease; }
.lightbox-x:hover { border-color: var(--gold); color: var(--gold); }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.speaker-name { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--cream); line-height: 1.15; margin-top: 14px; }
.speaker-title { font-family: var(--body); font-style: italic; font-size: 16px; color: var(--gold-soft); line-height: 1.4; margin-top: 5px; }
@media (max-width: 900px) { .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* trailer modal */
.trailer-modal { max-width: 960px; background: #000; }
.trailer-frame { position: relative; aspect-ratio: 16/9; width: 100%; background: var(--espresso) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='none'/%3E%3Cpath d='M0 40L40 0M-10 20L20 -10M20 50L50 20' stroke='%23c8a24a' stroke-opacity='0.06' stroke-width='6'/%3E%3C/svg%3E"); display: grid; place-items: center; }
.trailer-frame .tf-label { font-family: var(--caps); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash-dim); border: 1px solid var(--line); padding: 10px 18px; background: rgba(12,10,7,0.6); }
.trailer-frame video { width: 100%; height: 100%; object-fit: cover; }

/* play button */
.play-btn {
  width: 86px; height: 86px; border-radius: 50%; border: 1px solid var(--gold);
  background: rgba(12,10,7,0.35); backdrop-filter: blur(3px); display: grid; place-items: center;
  transition: all .35s ease; position: relative;
}
.play-btn:hover { background: var(--gold); transform: scale(1.06); }
.play-btn svg { fill: var(--gold); transition: fill .35s; margin-left: 4px; }
.play-btn:hover svg { fill: #1a1208; }
.play-btn::after { content: ""; position: absolute; inset: -10px; border: 1px solid var(--line); border-radius: 50%; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- FOOTER ---------- */
.footer { padding-block: 100px 50px; border-top: 1px solid var(--line); text-align: center; position: relative; z-index: 2; }
.footer-crest { width: 96px; margin: 0 auto 26px; opacity: .9; }
.footer-mark { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); font-weight: 600; }
.footer-mark em { font-style: italic; color: var(--gold-soft); }
.footer-links { display: flex; gap: 28px; justify-content: center; margin: 34px 0 40px; flex-wrap: wrap; }
.footer-links a { font-family: var(--caps); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); transition: color .25s; }
.footer-links a:hover { color: var(--gold); }
.footer-base { padding-top: 30px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-base span { font-family: var(--caps); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash-dim); }

/* ---------- QUOTE BAND ---------- */
.quoteband {
  position: relative; min-height: 58vh; display: grid; place-items: center; text-align: center;
  background: url("assets/photos/quote-bg.jpg") center/cover no-repeat; overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.quoteband-veil { position: absolute; inset: 0; background: linear-gradient(rgba(12,10,7,0.72), rgba(12,10,7,0.82)); }
.quoteband-inner { position: relative; z-index: 2; max-width: 1040px; padding: 96px var(--side); }
.quote-mark { font-family: var(--display); font-size: 96px; color: var(--gold); line-height: 0; display: block; height: 44px; }
.quote-text { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(25px, 3.8vw, 46px); line-height: 1.34; color: var(--cream); text-wrap: balance; }
.quote-author { font-family: var(--caps); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 32px; }

/* ---------- STORY ---------- */
.story { padding-block: 130px; border-top: 1px solid var(--line-soft); }
.story-head { margin-bottom: 64px; }
.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-block: 58px; }
.story-row + .story-row { border-top: 1px solid var(--line-soft); }
.story-row.reverse .story-figure { order: 2; }
.story-figure { position: relative; }
.story-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: 1px solid var(--line); filter: saturate(0.94); }
.story-figure .figtag { position: absolute; bottom: 14px; left: 14px; font-family: var(--caps); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); background: rgba(12,10,7,0.6); padding: 7px 12px; border: 1px solid var(--line); }
.story-kicker { font-family: var(--caps); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; display: flex; align-items: center; gap: 15px; }
.story-kicker::before { content: ""; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.story-copy .body-copy { font-size: 16.5px; max-width: 60ch; }
.story-copy .body-copy + .body-copy { margin-top: 16px; }

/* ---------- ARS POETICA ---------- */
.ars { position: relative; margin-top: 84px; padding: 76px clamp(28px, 6vw, 96px); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(39,26,16,0.42), rgba(12,10,7,0.5)); text-align: center; overflow: hidden; }
.ars-title { font-size: clamp(30px, 4vw, 52px); font-weight: 600; margin: 14px 0 30px; }
.ars-paras { max-width: 68ch; margin: 0 auto; position: relative; z-index: 2; }
.ars-paras p { color: #c5b9a4; font-size: 17px; line-height: 1.62; }
.ars-paras p + p { margin-top: 16px; }
.ars-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(34px, 5vw, 62px); text-align: left; margin-top: 34px; align-items: start; position: relative; z-index: 2; }
.ars-grid .ars-title { font-size: clamp(26px, 3vw, 40px); margin: 24px 0 22px; }
.ars-grid .ars-paras { max-width: none; margin: 0; }
.ars-grid .ars-paras p { font-size: 16px; line-height: 1.6; }
.ars-col, .person-col { display: flex; flex-direction: column; }
.ars-photo, .person-photo { width: 100%; height: clamp(300px, 32vw, 430px); object-fit: cover; display: block; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
.person-bio { margin-top: 22px; }
.person-bio p { color: #c5b9a4; font-size: 15.5px; line-height: 1.6; }
.person-bio p + p { margin-top: 13px; }
.person-sign { margin-top: 22px; display: flex; flex-direction: column; gap: 5px; }
.person-sign .ps-name { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--cream); line-height: 1.1; }
.person-sign .ps-role { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); }
.person-sign .ps-site { font-family: var(--caps); font-size: 11px; letter-spacing: 0.1em; color: var(--gold); text-decoration: none; margin-top: 3px; }
.person-sign .ps-site:hover { color: var(--gold-soft); }

/* ---------- TUDNIVALÓK ---------- */
.tudnivalok { padding-block: 120px; border-top: 1px solid var(--line-soft); }
.tud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.tud-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(29,21,13,0.4), rgba(12,10,7,0.45)); padding: 42px 36px; transition: border-color .35s ease, background .35s ease; }
.tud-card:hover { border-color: var(--line-strong); background: linear-gradient(180deg, rgba(39,26,16,0.55), rgba(12,10,7,0.5)); }
.tud-ico { width: 60px; height: 60px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); margin-bottom: 28px; }
.tud-title { font-family: var(--display); font-size: 26px; font-weight: 600; margin-bottom: 14px; }
.tud-desc { color: var(--ash); font-size: 15.5px; line-height: 1.6; }

/* desktopon a leírások egy árnyalattal nagyobbak, hogy könnyebben olvashatók legyenek */
@media (min-width: 900px) {
  .hero-sub { font-size: clamp(18px, 1.6vw, 21px); }
  .body-copy { font-size: 19px; line-height: 1.62; }
  .about-copy .p { font-size: 19px; }
  .story-copy .body-copy { font-size: 17.5px; }
  .ars-paras p { font-size: 18px; }
  .ars-grid .ars-paras p { font-size: 17px; }
  .person-bio p { font-size: 16.5px; }
  .tud-desc { font-size: 16.5px; }
  .story-cta-text, .cta-band-text { font-size: 18px; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* hero entrance — static visible (reliable) */
.hero-anim { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-anim { opacity: 0; animation: heroIn .85s cubic-bezier(.2,.7,.3,1) forwards; }
  .hero-inner > .hero-anim:nth-child(1) { animation-delay: .05s; }
  .hero-inner > .hero-anim:nth-child(2) { animation-delay: .16s; }
  .hero-inner > .hero-anim:nth-child(3) { animation-delay: .28s; }
  .hero-inner > .hero-anim:nth-child(4) { animation-delay: .42s; }
  .hero-inner > .hero-anim:nth-child(5) { animation-delay: .55s; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .about-grid, .member-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .ars-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-row { grid-template-columns: 1fr; gap: 30px; padding-block: 44px; }
  .story-row.reverse .story-figure { order: 0; }
  .tud-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .lang-toggle.lang-mobile { display: inline-flex; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gal-arrows { align-self: flex-end; }
  .gal-card { flex-basis: clamp(230px, 76%, 320px); }
  .nav-mobile {
    display: flex;
    position: fixed; inset: 0; z-index: 60; background: rgba(12,10,7,0.97); backdrop-filter: blur(10px);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
  }
  .nav-mobile.open { opacity: 1; pointer-events: auto; }
  .nav-mobile a { font-family: var(--display); font-size: 30px; color: var(--cream); }
  .event-card { grid-template-columns: 86px 1fr; gap: 22px; }
  .event-cover { grid-column: 1 / -1; width: 100%; height: auto; }
  .event-cover img { height: auto; object-fit: contain; }
  .event-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); padding-top: 16px; }
  .event-date .d { font-size: 40px; }
  .event-recur { gap: 14px; }
  .stats { gap: 30px; }
  .modal-head, .modal-body { padding-left: 26px; padding-right: 26px; }
  .footer-base { justify-content: center; text-align: center; }
}
