/* ============================================================
   Pozsonyi Zsolt — személyes márka weboldal
   Paletta: mély sötétkék (navy) + fehér + menta zöld
   Tipó: Poppins (display) + Archivo (szöveg)
   ============================================================ */

:root {
  --paper: #F3F4F8;
  --paper-2: #E7E9F1;
  --ink: #17142F;
  --pine: #221E46;
  --pine-deep: #15122C;
  --hero-bg: #15122C;   /* sötétkék hero háttér (könnyen állítható) */
  --accent: #33C08C;
  --accent-dark: #28A578;
  --accent-ink: #0C7E57;   /* sötétebb menta a világos háttéren lévő feliratokhoz */
  --gold: #5FCB9F;      /* fényes menta kiemelés sötét háttéren */
  --line: rgba(23, 20, 51, 0.14);
  --line-light: rgba(243, 244, 248, 0.18);
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

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

html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

::selection { background: var(--accent); color: var(--ink); }

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

em { font-style: italic; }

a { color: inherit; }

/* ---------- Gombok ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--accent); color: var(--ink); font-weight: 700; box-shadow: 0 8px 24px rgba(51, 192, 140, 0.28); }
.btn--accent:hover { background: var(--accent-dark); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(243, 244, 248, 0.4); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(243, 244, 248, 0.08); }
.btn--ghost-dark { color: var(--pine); border-color: rgba(34, 30, 70, 0.35); }
.btn--ghost-dark:hover { border-color: var(--pine); background: rgba(34, 30, 70, 0.06); }
.btn--outline { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn--outline:hover { background: var(--pine); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--pine-deep); }
.btn--light:hover { background: #fff; }
.btn--small { padding: 0.6em 1.4em; font-size: 0.88rem; }

/* ---------- Kicker / szekciócímek ---------- */
.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  gap: 0.9em;
  margin-bottom: 1.2rem;
}
.kicker::after { content: ""; height: 1px; flex: 0 0 3.5rem; background: currentColor; opacity: 0.5; }
.kicker--light { color: var(--gold); }
.kicker__link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: opacity 0.2s ease; }
.kicker__link:hover { opacity: 0.65; }
.kicker__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.85;
}

.section { padding: clamp(2.25rem, 4.5vw, 4rem) var(--pad-x); position: relative; }
.section--tinted { background: var(--paper-2); }
.section--dark {
  background:
    radial-gradient(55rem 40rem at 12% 0%, rgba(51, 192, 140, 0.12), transparent 58%),
    radial-gradient(50rem 42rem at 100% 100%, rgba(120, 96, 220, 0.14), transparent 55%),
    linear-gradient(165deg, #1c1746 0%, var(--pine-deep) 55%);
  color: var(--paper);
  overflow: hidden;
}
.section--dark .section__title { color: var(--paper); }
.section__head { max-width: 60rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__title {
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  letter-spacing: -0.01em;
}
.section__title em { color: var(--accent-ink); }
.section--dark .section__title em { color: var(--gold); }

/* ---------- Navigáció ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem var(--pad-x);
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav__monogram {
  position: relative;
  font-family: var(--font-display);
  font-weight: 640;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper);
  background: var(--accent);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
/* Élő (vektoros) szaggatott gyűrű — nagyításkor is éles, minden rublika
   pontosan azonos távolságra van a kör középpontjától */
.nav__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nav__name { font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { opacity: 1; color: var(--accent-ink); }
.nav__cta { flex: 0 0 auto; background: var(--pine); color: var(--paper); }
.nav__cta:hover { background: var(--pine-deep); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.25s, opacity 0.25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(80rem 55rem at 88% -20%, rgba(95, 203, 159, 0.20), transparent 60%),
    radial-gradient(60rem 50rem at 8% 120%, rgba(120, 96, 220, 0.18), transparent 55%),
    radial-gradient(50rem 45rem at 40% 40%, rgba(51, 192, 140, 0.10), transparent 60%),
    linear-gradient(90deg, var(--hero-bg) 30%, #241d5c 68%, #2f2775 100%),
    linear-gradient(160deg, #1d1849 0%, var(--hero-bg) 58%);
  color: var(--paper);
  padding: clamp(1.25rem, 3vw, 2.5rem) var(--pad-x) 0;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: 82rem;
  margin: 0 auto;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.hero__title {
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
}
.hero__title em { color: var(--gold); font-weight: 800; font-style: normal; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 36rem; opacity: 0.88; margin-bottom: 1.2rem; }
.hero__mission {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--gold);
  max-width: 34rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__media { position: relative; display: flex; justify-content: center; align-items: flex-end; }
/* Kivágott (háttér nélküli) fotó — Zsolt „a hero-ban áll", finom glow-val */
.hero__media::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -2%;
  width: 78%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(95, 203, 159, 0.16), transparent 68%);
  pointer-events: none;
}
.hero__photo {
  position: relative;
  width: auto;
  max-width: 100%;
  max-height: 44rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}
.hero__badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  max-width: 17rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.hero__badge-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 640; line-height: 1; }
.hero__badge-txt { font-size: 0.8rem; line-height: 1.4; font-weight: 500; }

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  padding: 1.8rem 0 2.2rem;
  gap: 1.5rem;
}
.stat { text-align: left; }
.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 560;
  color: var(--gold);
}
.stat__label { display: block; font-size: 0.8rem; opacity: 0.75; margin-top: 0.3rem; max-width: 11rem; }

/* ---------- Partner logó marquee ---------- */
.marquee {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.4rem 0;
  white-space: nowrap;
}
.marquee__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-ink);
  margin-bottom: 1.3rem;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(2.8rem, 6vw, 5.5rem);
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
/* A logók körbevágva, egységes tintaszínben, közvetlenül a sávon
   (fehér kártya nélkül) — tiszta, egységes „logócsík" megjelenés. */
.mlogo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.mlogo img {
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
/* A MOB „álló" elrendezésű logó, ezért kicsit nagyobb, hogy kiegyenlített legyen */
.mlogo img[src*="mob.png"] { height: 54px; }
.mlogo img[src*="agence-najoua.png"] { height: 60px; }
/* Szöveges tartalék, amíg a logófájl nincs meg */
.mlogo__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: var(--pine);
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.mlogo:hover .mlogo__name { opacity: 1; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ---------- Kép-helyek (placeholderek) ---------- */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.6rem;
  border-radius: var(--radius);
  border: 1.5px dashed rgba(34, 30, 70, 0.4);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(34, 30, 70, 0.05) 14px 15px),
    linear-gradient(160deg, rgba(34, 30, 70, 0.07), rgba(95, 203, 159, 0.08));
  color: var(--pine);
  overflow: hidden;
}
.ph__icon { width: 2.4rem; height: 2.4rem; opacity: 0.55; margin-top: auto; }
.ph__label {
  margin-bottom: auto;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}
.ph__label span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--landscape { aspect-ratio: 16 / 10; }
.ph--tall { aspect-ratio: 4 / 5; }
.split__figure img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
.konyv__cover { margin: 0; height: 100%; position: relative; display: flex; justify-content: center; align-items: center; }
.konyv__cover > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}
.konyv__pecset {
  position: absolute;
  width: 26%;
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
  transform: rotate(-8deg);
  z-index: 2;
}
.konyv__pecset--bestseller { bottom: 29%; right: 2%; transform: rotate(8deg); }
.konyv__pecset--ertekeles { bottom: 4%; right: 6%; }
@media (max-width: 640px) {
  .konyv__pecset { width: 30%; }
}
.ph--card { aspect-ratio: 16 / 9; border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
.card__photos {
  margin: 0;
  display: flex;
  gap: 3px;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.card__photos img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.card__photo {
  margin: 0;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.bookmeta__who { display: flex; flex-direction: column; align-items: flex-start; }
.bookmeta__video { margin-top: 1.6rem; }
.wego-photo { margin: 0; }
.wego-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.ph--book { aspect-ratio: 68 / 100; max-width: 22rem; margin: 0 auto; box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.ph--onDark { border-color: rgba(243, 244, 248, 0.35); color: var(--paper-2); background:
  repeating-linear-gradient(45deg, transparent 0 14px, rgba(243, 244, 248, 0.05) 14px 15px),
  linear-gradient(160deg, rgba(243, 244, 248, 0.06), rgba(95, 203, 159, 0.1)); }

/* ---------- Rólam / történet ---------- */
.story { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); max-width: 76rem; margin: 0 auto; }
.story__item {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.story__year { grid-column: 1; grid-row: 1; }
.story__body { grid-column: 2; grid-row: 1; }
.story__img { grid-column: 3; grid-row: 1; }
.story__item--flip { grid-template-columns: 7rem minmax(0, 0.9fr) minmax(0, 1.2fr); }
.story__item--flip .story__img { grid-column: 2; grid-row: 1; }
.story__item--flip .story__body { grid-column: 3; grid-row: 1; }
.story__year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-ink);
  border-top: 2px solid var(--accent);
  padding-top: 0.5rem;
  position: sticky;
  top: 5.5rem;
}
.story__body h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); margin-bottom: 0.9rem; }
.inline-link {
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.inline-link:hover { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 2px; }
.inline-link--btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* ---------- Lightbox (felugró kép) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 30, 0.82);
  backdrop-filter: blur(4px);
}
.lightbox__inner {
  position: relative;
  margin: 0;
  max-width: min(92vw, 720px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: lb-in 0.2s ease;
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__caption {
  color: var(--paper-2, #e8eaf0);
  font-size: 0.9rem;
  text-align: center;
  max-width: 40rem;
}
.lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #111;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.story__body p + p { margin-top: 0.9rem; }
.story__img { align-self: stretch; min-height: 14rem; }
.story__img:has(img) { min-height: 0; }
.story__img { display: flex; justify-content: center; }
.story__img img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 22rem;
  border-radius: var(--radius);
}
/* Hosszú szöveg mellett a kép a szöveg magasságát tölti ki (nem nyújtja meg a sort).
   A kép abszolút pozícióban van, így a szöveg határozza meg a sor magasságát. */
.story__img--tall { align-self: stretch; position: relative; min-height: 20rem; }
.story__img--tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top; /* a fejek maradjanak, alul vágjon */
}

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 480;
  color: var(--pine);
  text-align: center;
  max-width: 46rem;
  margin: clamp(1.75rem, 3.5vw, 3rem) auto 0;
  position: relative;
}

/* ---------- Split (előadás, könyv, wego) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 76rem;
  margin: 0 auto;
  align-items: start;
}
.split__text p + p { margin-top: 1rem; }
.split__text .btn { margin-top: 1.8rem; }
.split--book { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: stretch; }
.split__highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
}
.split--wego .section__title { margin-bottom: 1.4rem; }
.split--wego .hero__actions { margin-top: 1.8rem; }

.award {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(95, 203, 159, 0.14);
  border: 1px solid rgba(95, 203, 159, 0.45);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-top: 1.4rem;
  font-size: 0.95rem;
}
.award__medal { color: var(--accent-ink); font-size: 1.4rem; line-height: 1.2; }

/* ---------- Idézetek ---------- */
.testimonials { max-width: 76rem; margin: clamp(1.5rem, 3vw, 2.5rem) auto 0; }
.testimonials__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--pine);
}
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.testimonials__grid > .quote { height: 100%; margin: 0; }
.testimonials__grid > .quote + .quote { margin-top: 0; }
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  font-size: 0.98rem;
  font-style: italic;
}
.quote footer { margin-top: 0.9rem; font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--accent-ink); }
.quote--placeholder { border-style: dashed; opacity: 0.55; }
.quote--onDark { background: rgba(243, 244, 248, 0.06); border-color: var(--line-light); }
.quote--onDark footer { color: var(--gold); }
.quote + .quote { margin-top: 1rem; }

/* ---------- Könyv szekció ---------- */
.konyv__watermark {
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: clamp(14rem, 30vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(95, 203, 159, 0.16);
  pointer-events: none;
  user-select: none;
}
.pillars { max-width: 76rem; margin: clamp(1.75rem, 3.5vw, 3rem) auto 0; position: relative; }
.pillars__intro {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  max-width: 48rem;
  margin-bottom: 2.5rem;
  color: var(--gold);
}
.pillars__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.pillar {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: rgba(243, 244, 248, 0.04);
  transition: background 0.25s ease, transform 0.25s ease;
}
.pillar:hover { background: rgba(243, 244, 248, 0.08); transform: translateY(-3px); }
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.5rem;
}
.pillar h3 { font-size: 1.45rem; margin: 0.5rem 0 0.8rem; color: var(--paper); }
.pillar p { font-size: 0.97rem; opacity: 0.88; }

.bookmeta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 76rem;
  margin: clamp(1.75rem, 3.5vw, 3rem) auto 0;
  position: relative;
}
.bookmeta h3 { font-size: 1.5rem; margin-bottom: 1.2rem; color: var(--gold); }
.bookmeta__who ul { list-style: none; }
.bookmeta__who li {
  padding: 0.9rem 0 0.9rem 1.8rem;
  border-bottom: 1px solid var(--line-light);
  position: relative;
}
.bookmeta__who li::before { content: "✦"; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; top: 1.15rem; }
.konyv__cta {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  position: relative;
}

/* ---------- Edzés kártyák ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 76rem;
  margin: 0 auto;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(23, 20, 51, 0.1); }
.card--featured { border-color: var(--accent); border-width: 1.5px; }
.card__body { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.card__body > p { font-size: 0.97rem; }
.card__meta { margin: 1.2rem 0 1.6rem; display: grid; gap: 0.9rem; }
.card__meta div { border-left: 2px solid var(--gold); padding-left: 0.9rem; }
.card__meta dt { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-ink); margin-bottom: 0.15rem; }
.card__meta dd { font-size: 0.92rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- WeGo ---------- */
.split--wego { align-items: center; }
.wego-stat {
  background: var(--pine);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.wego-stat__num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 560; color: var(--gold); line-height: 1; }
.wego-stat__label { font-size: 0.9rem; opacity: 0.85; max-width: 16rem; }

/* ---------- Módszer ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 76rem;
  margin: 0 auto;
}
.principle {
  border-top: 2px solid var(--pine);
  padding-top: 1.3rem;
  transition: border-color 0.25s ease;
}
.principle:hover { border-color: var(--accent); }
.principle h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.principle p { font-size: 0.95rem; opacity: 0.85; }

/* ---------- Kapcsolat ---------- */
.section--contact {
  background:
    radial-gradient(65rem 48rem at 108% 0%, rgba(95, 203, 159, 0.16), transparent 55%),
    radial-gradient(55rem 45rem at -8% 100%, rgba(120, 96, 220, 0.16), transparent 55%),
    linear-gradient(150deg, #1c1746 0%, var(--pine-deep) 55%);
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 76rem;
  margin: 0 auto;
}
.contact__form { display: grid; gap: 1.1rem; }
.contact__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--paper);
  background: rgba(243, 244, 248, 0.07);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact__form input::placeholder, .contact__form textarea::placeholder { color: rgba(243, 244, 248, 0.4); }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(243, 244, 248, 0.11);
}
.contact__form select option { color: var(--ink); }
.contact__form .btn { justify-self: start; margin-top: 0.4rem; }
.contact__note { font-size: 0.8rem; opacity: 0.6; font-weight: 400; text-transform: none; letter-spacing: 0; }
.contact__info { display: grid; gap: 1.8rem; align-content: start; }
.contact__block h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: 0.5rem; }
.contact__block a { color: var(--paper); text-decoration-color: rgba(95, 203, 159, 0.5); text-underline-offset: 3px; }
.contact__block a:hover { color: var(--gold); }
.contact__block p { opacity: 0.85; font-size: 0.97rem; }
.socials { display: flex; flex-direction: column; gap: 0.4rem; }

/* ---------- Média ---------- */
.section--media { padding-top: clamp(1.5rem, 3vw, 2.25rem); padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
  gap: 2rem 1.3rem;
  max-width: 76rem;
  margin: 0 auto;
}
.media-card { display: flex; flex-direction: column; text-decoration: none; }
.media-card__thumb {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.media-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
a.media-card:hover .media-card__thumb { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(23, 20, 51,0.14); }
a.media-card:hover .media-card__thumb img { transform: scale(1.05); }
a.media-card:hover .media-card__title { color: var(--accent); }
.media-card__thumb--ph {
  display: grid;
  place-items: center;
  gap: 0.3rem;
  border-style: dashed;
  border-color: rgba(34, 30, 70, 0.4);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(34, 30, 70, 0.05) 14px 15px),
    linear-gradient(160deg, rgba(34, 30, 70, 0.07), rgba(95, 203, 159, 0.08));
  color: var(--pine);
}
.media-card__thumb--ph .ph__icon { width: 1.6rem; height: 1.6rem; opacity: 0.55; margin-top: auto; }
.media-card__thumb--ph .ph__label { margin-bottom: auto; font-size: 0.6rem; }
.media-card__thumb--ph .ph__label span { font-size: 0.7rem; margin-top: 0.1rem; }
.media-card__tag {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-ink);
}
.media-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}
.media-card--nolink { opacity: 0.6; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 2rem 1.6rem;
  max-width: none;
  margin: 0 auto;
}
.blog-card { display: flex; }
.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card__link:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(23, 20, 51, 0.1); }
.blog-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.blog-card__link:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__thumb--ph {
  display: grid;
  place-items: center;
  gap: 0.3rem;
  border-bottom: 1px dashed rgba(34, 30, 70, 0.4);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(34, 30, 70, 0.05) 14px 15px),
    linear-gradient(160deg, rgba(34, 30, 70, 0.07), rgba(95, 203, 159, 0.08));
  color: var(--pine);
}
.blog-card__thumb--ph .ph__icon { width: 1.6rem; height: 1.6rem; opacity: 0.55; margin-top: auto; }
.blog-card__thumb--ph .ph__label { margin-bottom: auto; font-size: 0.6rem; }
.blog-card__thumb--ph .ph__label span { font-size: 0.7rem; margin-top: 0.1rem; }
.blog-card__date {
  margin: 1.3rem 1.4rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-ink);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0.35rem 1.4rem 0;
  transition: color 0.2s ease;
}
.blog-card__link:hover .blog-card__title { color: var(--accent-ink); }
.blog-card__excerpt {
  margin: 0.7rem 1.4rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.8;
}
.blog-card__more {
  margin: 1.1rem 1.4rem 1.5rem;
  margin-top: auto;
  padding-top: 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-ink);
}

/* ---------- Blogbejegyzés oldal ---------- */
.post { max-width: 44rem; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) var(--pad-x) clamp(3rem, 7vw, 6rem); }
.post__head { margin-bottom: 1.8rem; }
.post__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.05; letter-spacing: -0.01em; margin-top: 0.6rem; }
.post__cover { margin: 0 auto 2.4rem; max-width: 30rem; }
.post__cover img { display: block; width: 100%; height: auto; border-radius: var(--radius); box-shadow: 0 24px 50px rgba(23, 20, 51, 0.14); }
.post__body { font-size: 1.06rem; line-height: 1.75; color: var(--ink); }
.post__body p { margin-bottom: 1.25rem; }
.post__body h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.65rem); line-height: 1.25; color: var(--pine); margin: 2.4rem 0 0.8rem; }
.post__body h3 + p { margin-top: 0; }
.post__body strong { font-weight: 700; }
.post__back { margin-top: 2.5rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 0 var(--pad-x); }
.footer__partners { padding: 2.5rem 0; border-bottom: 1px solid var(--line-light); max-width: 76rem; margin: 0 auto; }
.footer__partners-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.6; margin-bottom: 1.2rem; }
.footer__logos { display: flex; flex-wrap: wrap; gap: 0.8rem 2.2rem; align-items: center; }
.plogo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.plogo:hover { opacity: 1; }
.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding: 3rem 0;
  max-width: 76rem;
  margin: 0 auto;
}
.footer__brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.8;
  margin-top: 1rem;
  max-width: 18rem;
}
.footer__col h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 0.9rem; }
.footer__col a { display: block; text-decoration: none; opacity: 0.8; font-size: 0.93rem; padding: 0.22rem 0; transition: opacity 0.15s, color 0.15s; }
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  padding: 1.4rem 0 1.8rem;
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 76rem;
  margin: 0 auto;
}
.footer__up { text-decoration: none; }
.footer__up:hover { color: var(--gold); }

/* ---------- Reveal animációk ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Reszponzív ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 26rem; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .story__item, .story__item--flip { grid-template-columns: 1fr; }
  .story__year, .story__body, .story__img,
  .story__item--flip .story__body, .story__item--flip .story__img { grid-column: 1; grid-row: auto; }
  .story__year { position: static; border-top: none; border-left: 2px solid var(--accent); padding: 0 0 0 0.8rem; }
  .story__item--flip .story__img { order: 0; }
  .story__img { min-height: 0; }
  .story__img--tall { min-height: 0; }
  .story__img--tall img { position: static; height: auto; max-height: 22rem; object-fit: contain; }
  .split, .split--book, .bookmeta, .contact { grid-template-columns: 1fr; }
  .split--book .split__media { order: -1; }
  .pillars__grid, .cards { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--pad-x) 1.2rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .nav__burger { display: block; margin-left: auto; }
  .nav__cta { display: none; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__badge { left: 0; }
  .pillars__grid, .cards, .principles, .testimonials__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 1.8rem; }
  .wego-stat { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ============================================================
   Jogi oldalak (Adatvédelem / Impresszum / Cookie-szabályzat)
   ============================================================ */
.legal { max-width: 50rem; }
.legal__meta { color: var(--pine); opacity: 0.7; font-size: 0.92rem; margin-top: 0.5rem; }
.post__body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.45rem, 2.8vw, 1.9rem); line-height: 1.2; color: var(--ink); margin: 2.8rem 0 0.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.post__body h2:first-of-type { border-top: none; padding-top: 0; }
.post__body h3 { color: var(--accent-ink); }
.post__body ul, .post__body ol { margin: 0 0 1.25rem 1.3rem; }
.post__body li { margin-bottom: 0.55rem; padding-left: 0.2rem; }
.post__body a { color: var(--accent-ink); }
.legal__note { background: var(--paper-2); border: 1px dashed var(--accent-dark); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin: 0 0 2.2rem; font-size: 0.96rem; line-height: 1.6; color: var(--pine); }
.legal__note strong { color: var(--ink); }
.legal__ph { background: rgba(51, 192, 140, 0.16); border-radius: 5px; padding: 0.05em 0.4em; font-weight: 600; color: var(--accent-ink); white-space: nowrap; }
.legal__table { width: 100%; border-collapse: collapse; margin: 0.4rem 0 1.6rem; font-size: 0.97rem; }
.legal__table th, .legal__table td { text-align: left; vertical-align: top; padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line); }
.legal__table th { font-family: var(--font-display); font-weight: 600; color: var(--pine); background: var(--paper-2); }
.legal__table td:first-child { font-weight: 600; width: 38%; }
.legal__toc { background: var(--paper-2); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 0 0 2.4rem; }
.legal__toc p { font-family: var(--font-display); font-weight: 600; margin-bottom: 0.6rem; color: var(--ink); }
.legal__toc ol { margin: 0 0 0 1.2rem; }
.legal__toc li { margin-bottom: 0.35rem; }
.legal-footer { background: var(--pine-deep); color: var(--paper); padding: 2.2rem var(--pad-x); text-align: center; }
.legal-footer__links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; justify-content: center; margin-bottom: 1rem; }
.legal-footer__links a { color: var(--paper); text-decoration: none; opacity: 0.82; font-size: 0.95rem; }
.legal-footer__links a:hover { opacity: 1; color: var(--gold); }
.legal-footer__copy { opacity: 0.55; font-size: 0.85rem; }
