/* =========================================================
   Labyrint života — hlavný stylesheet
   Značka: zlatá (akcent) #8a6a2e, dekor zlatá #b8924f, tmavá #3d4459
   Fonty: Montserrat (telo), Roboto (nadpisy), Varela Round (dekor)
   ========================================================= */

:root {
	--accent: #8a6a2e;       /* akcent: tlačidlá, odkazy, ceny (čitateľná „antique gold") */
	--accent-dark: #6f5325;  /* hover akcentu */
	--gold: #b8924f;         /* jemná dekoratívna zlatá (eyebrow, linky, číslo kroku) */
	--green: var(--accent);  /* spätná kompatibilita pre staré pravidlá */
	--dark: #3d4459;       /* telo textu, sekundárne nadpisy */
	--ink: #0c0808;        /* veľké nadpisy (takmer čierna) */
	--text: #3d4459;
	--muted: #6b7180;
	--white: #ffffff;
	--container: 1140px;
	--gutter: 20px;
	--font-body: "Montserrat", sans-serif;
	--font-head: "Varela Round", sans-serif;
	--font-deco: "Varela Round", sans-serif;
	--font-alt: "Inter", sans-serif;   /* nadpisy v článkoch (Gutenberg obsah) */
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.45;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* ---------- Dekoratívne akvarelové tvary ---------- */
.deco-shapes { position: relative; }
.deco-shapes > .container { position: relative; z-index: 2; }
.deco-shapes::before,
.deco-shapes::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-image: url('/wp-content/uploads/2019/08/Shapes-icons.png');
}
/* blob sprava */
.deco-right::after {
	right: -80px; top: -30px;
	width: 540px; height: 480px;
	background-position: right top;
	background-size: contain;
	opacity: .8;
}
/* blob zľava (preklopený) */
.deco-left::before {
	left: -90px; bottom: -40px;
	width: 480px; height: 430px;
	background-position: left bottom;
	background-size: contain;
	transform: scaleX(-1);
	opacity: .8;
}

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

a { color: var(--green); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--dark); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 300; color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }

p { margin: 0 0 1.1em; }

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

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

/* ---------- Tlačidlá ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	color: var(--white);
	background: var(--green);
	border: 1px solid var(--green);
	border-radius: 30px;
	padding: 15px 30px;
	cursor: pointer;
	transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); transform: translateY(-2px); }

/* zelený textový odkaz (napr. „Dozvedieť sa viac" v kartách) */
.textlink {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--green);
}
.textlink:hover { color: var(--ink); }

/* tlačidlo so šípkou dole („Čítať Viac ↓") */
.btn--arrow { display: inline-flex; align-items: center; gap: 9px; }
.btn--arrow svg { width: 16px; height: 16px; flex: 0 0 auto; }

.btn--outline {
	background: transparent;
	color: var(--green);
	border: 1px solid var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }

.section-title {
	font-family: var(--font-deco);
	font-weight: 300;
	color: var(--ink);
	font-size: 45px;
	line-height: 1.2;
	text-align: center;
	margin-bottom: .3em;
}
.section-subtitle {
	text-align: center;
	color: var(--dark);
	font-weight: 300;
	max-width: 720px;
	margin: 0 auto 2rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.96);
	box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 132px;
}
.site-logo { flex: 0 0 auto; }
.site-logo img { height: 72px; width: auto; }

.site-nav .menu {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 4px;
}
.site-nav--main { flex: 0 1 auto; }
.site-nav--main .menu { justify-content: flex-end; flex-wrap: wrap; }

.site-nav .menu a {
	display: inline-block;
	font-family: var(--font-deco);
	font-weight: 500;
	font-size: 15px;
	color: #2a302f;
	text-transform: none;
	letter-spacing: normal;
	padding: 9px 14px;
	border-radius: 30px;
	transition: background .2s, color .2s;
}
.site-nav .menu a:hover {
	background: #f0f0f0;
	color: #2a302f;
}

/* „Aktuálne" — položka so zlatou pulzujúcou bodkou (zobrazí sa len keď beží event) */
.site-nav .nav-live > a,
.mobile-nav .nav-live > a { display: inline-flex; align-items: center; gap: 9px; }
.nav-dot {
	display: inline-block;
	width: 9px; height: 9px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 0 rgba(184,146,79,.55);
	animation: lz-pulse 1.8s ease-out infinite;
}
@keyframes lz-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(184,146,79,.55); }
	70%  { box-shadow: 0 0 0 9px rgba(184,146,79,0); }
	100% { box-shadow: 0 0 0 0 rgba(184,146,79,0); }
}
@media (prefers-reduced-motion: reduce) {
	.nav-dot { animation: none; }
}

/* Pod-panel pre „Možnosti spolupráce" — dve položky vedľa seba (desktop) */
.site-nav .has-sub { position: relative; }
.site-nav .subnav {
	list-style: none;
	margin: 0; padding: 8px;
	display: flex;
	gap: 6px;
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 14px 40px rgba(0,0,0,.12);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, transform .2s, visibility .2s;
	z-index: 120;
}
.site-nav .has-sub:hover > .subnav,
.site-nav .has-sub:focus-within > .subnav,
.site-nav .has-sub.is-open > .subnav {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.site-nav .subnav a { white-space: nowrap; }

/* Hamburger + mobilné menu */
.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* =========================================================
   INTRO (Hero + Kto som)
   ========================================================= */
.intro {
	padding: 55px 0 65px;
	background-image: var(--intro-bg);
	background-repeat: no-repeat;
	background-position: left -120px top -80px;
	background-size: 780px auto;
}
.intro__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: center;
}
.intro__media img {
	border-radius: 100px 100px 250px 100px;
	box-shadow: 0 22px 50px rgba(0,0,0,.16);
	width: 100%;
	max-height: 550px;
	object-fit: cover;
	object-position: center 22%;
}
.intro__eyebrow {
	font-family: var(--font-deco);
	color: var(--green);
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: .6em;
}
.intro__name { font-size: 46px; line-height: 1.12; color: var(--ink); margin-bottom: .35em; }
.intro__role {
	font-family: var(--font-deco);
	color: var(--gold);
	font-size: 19px;
	line-height: 1.5;
	margin: 0 0 1.1em;
	padding-bottom: 1.1em;
	border-bottom: 1px solid rgba(184,146,79,.28);
}
.intro__lead { font-size: 18px; font-weight: 400; line-height: 1.7; color: var(--dark); margin-bottom: 1.4em; }
.intro p { color: var(--dark); }
.intro .btn { margin-top: 6px; }

/* =========================================================
   E-BOOK
   ========================================================= */
.ebook { padding: 65px 0; background: #f7f6f3; }
.ebook__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.ebook__media img { border-radius: 100px 100px 250px 100px; box-shadow: 0 18px 40px rgba(0,0,0,.14); width: 100%; }
.ebook__eyebrow {
	font-family: var(--font-deco);
	color: var(--green);
	font-size: 20px;
	margin: 0 0 .2em;
}
.ebook__title { font-size: 45px; margin-bottom: .6em; }
.ebook p { color: var(--dark); }

/* Program landing blok (homepage) — Prepíšte svoj príbeh */
.program {
	padding: 72px 0;
	background-color: #f7f6f3;
	background-image: linear-gradient( rgba(247,246,243,.92), rgba(247,246,243,.92) ), var(--program-bg);
	background-size: cover;
	background-position: center;
}
.program__eyebrow { font-family: var(--font-deco); color: var(--green); font-size: 20px; text-align: center; margin: 0 0 .15em; }
.program .section-title { margin-bottom: .35em; }
.program__headline {
	font-family: var(--font-deco);
	font-weight: 300;
	font-size: 23px;
	line-height: 1.5;
	color: var(--dark);
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.6rem;
}
/* Cesta spolupráce — preview 4 krokov (mirror /moznosti-spoluprace/) */
.jpath {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1020px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.jpath__step { display: flex; }
.jpath__link {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border-radius: 16px;
	padding: 34px 24px 28px;
	box-shadow: 0 12px 35px rgba(0,0,0,.08);
	transition: box-shadow .3s, transform .3s;
}
.jpath__link:hover { box-shadow: 0 22px 50px rgba(0,0,0,.14); transform: translateY(-6px); }
.jpath__num {
	position: absolute;
	top: -18px;
	left: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-family: var(--font-deco);
	font-size: 20px;
	box-shadow: 0 6px 16px rgba(138,106,46,.35);
}
.jpath__stage { font-family: var(--font-alt); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin: .6em 0 .3em; }
.jpath__title { font-family: var(--font-deco); font-weight: 300; font-size: 21px; line-height: 1.25; color: var(--dark); margin-bottom: .55em; }
.jpath__text { font-weight: 300; font-size: 15px; line-height: 1.55; color: var(--dark); }
.jpath__cta { text-align: center; margin-top: 2.6rem; }
@media (max-width: 900px) { .jpath { grid-template-columns: 1fr 1fr; gap: 28px 22px; max-width: 560px; } }
@media (max-width: 480px) { .jpath { grid-template-columns: 1fr; max-width: 360px; } }

/* Stránka Aktuálne — karty eventov */
/* Citátový pruh (rotujúci) v Aktuálne */
.quote-band { padding: 30px 0 60px; }
.quote-band .container { max-width: 820px; }
.quote-rotator { display: grid; text-align: center; }
.quote-rotator__item {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease, visibility .8s ease;
	margin: 0;
}
.quote-rotator__item.is-active { opacity: 1; visibility: visible; }
.quote-rotator__text {
	font-family: var(--font-deco);
	font-weight: 300;
	font-style: italic;
	font-size: 27px;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
}
.quote-rotator__sign {
	font-family: 'Great Vibes', cursive;
	font-size: 38px;
	line-height: 1;
	color: var(--gold);
	margin-top: 22px;
}
@media (max-width: 700px) {
	.quote-rotator__text { font-size: 21px; }
	.quote-rotator__sign { font-size: 32px; }
}

.aktualne-page .page__header { text-align: center; }
.aktualne-empty { text-align: center; font-weight: 300; font-size: 18px; color: var(--dark); max-width: 620px; margin: 2rem auto 4rem; }
.events {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	max-width: 1040px;
	margin: 1rem auto 4rem;
}
.event-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(0,0,0,.08);
	transition: box-shadow .3s, transform .3s;
}
.event-card:hover { box-shadow: 0 22px 54px rgba(0,0,0,.14); transform: translateY(-4px); }
.event-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Full-width karta: ak má obrázok → obrázok vľavo, text vpravo */
@media (min-width: 761px) {
	.event-card:not(.event-card--noimg) { flex-direction: row; align-items: stretch; }
	.event-card:not(.event-card--noimg) .event-card__media { flex: 0 0 40%; aspect-ratio: auto; }
	.event-card:not(.event-card--noimg) .event-card__body { flex: 1; }
}
/* Bez obrázku → text v pohodlnej šírke, vycentrovaný v plnej karte */
.event-card--noimg .event-card__body { max-width: 800px; width: 100%; margin: 0 auto; }
.event-card__status {
	display: inline-block;
	align-self: flex-start;
	font-family: var(--font-alt);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--accent);
	padding: 5px 12px;
	border-radius: 30px;
}
.event-card__media .event-card__status { position: absolute; top: 14px; left: 14px; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.event-card__status--pripravujeme { background: var(--gold); }
.event-card__status--posledne-miesta { background: #b5562e; }
.event-card__status--prebieha { background: #5a7d4f; }
.event-card__status--vypredane { background: #6b6b6b; }
.event-card__body { display: flex; flex-direction: column; gap: 12px; padding: 26px 28px 30px; flex: 1; }
.event-card__body > .event-card__status { margin-bottom: 2px; }
.event-card__title { font-family: var(--font-deco); font-weight: 300; font-size: 26px; line-height: 1.2; color: var(--dark); }
.event-card__meta { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-family: var(--font-alt); font-size: 14px; }
.event-card__term { font-weight: 600; color: var(--accent-dark); }
.event-card__place, .event-card__price { color: var(--dark); }
.event-card__desc { font-weight: 300; line-height: 1.6; color: var(--dark); margin: 0; }
.event-card__more { font-weight: 300; line-height: 1.6; color: var(--dark); }
.event-card__more p { margin: 0 0 .7em; }
.event-card__more ul { list-style: none; margin: 0 0 .9em; padding: 0; }
.event-card__more li { position: relative; padding-left: 20px; margin-bottom: .5em; }
.event-card__more li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.event-card__more strong { color: var(--ink); font-weight: 600; }
.event-card__more em { color: var(--accent-dark); }
.event-card__cta { align-self: flex-start; margin-top: auto; }
@media (max-width: 760px) { .events { grid-template-columns: 1fr; max-width: 460px; } }

.se-form { max-width: 520px; }
.se-form__row { margin-bottom: 14px; }
.se-form input {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	padding: 14px 16px;
	border: 1px solid #d6d6d6;
	border-radius: 4px;
	background: #fff;
}
.se-form input:focus { outline: none; border-color: var(--green); }
.se-form__note { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 12px 0 18px; }

/* =========================================================
   PROMO (Online seminár)
   ========================================================= */
.promo { padding: 70px 0; }
.promo__inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.promo__media img {
	width: 100%;
	border-radius: 100px 100px 250px 100px;
	box-shadow: 0 22px 50px rgba(0,0,0,.16);
}
.promo__body { text-align: center; }
.promo__title { font-size: 40px; color: var(--ink); margin-bottom: .6em; }
.promo__body p { color: var(--dark); }
.promo .btn { margin-top: 14px; }
@media (max-width: 880px) {
	.promo { padding: 55px 0; }
	.promo__inner { grid-template-columns: 1fr; gap: 36px; }
	.promo__media { order: -1; max-width: 380px; margin: 0 auto; }
}

/* =========================================================
   ČO PONÚKAM / SLUŽBY
   ========================================================= */
.services { padding: 65px 0; }
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.service-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 35px rgba(0,0,0,.08);
	transition: box-shadow .3s, transform .3s;
}
.service-card:hover { box-shadow: 0 22px 50px rgba(0,0,0,.14); transform: translateY(-6px); }
.service-card__media { display: block; overflow: hidden; aspect-ratio: 265 / 185; background: #f0f0f0; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card__media:hover img { transform: scale(1.06); }
.service-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card__title { font-size: 20px; color: var(--dark); margin-bottom: .5em; }
.service-card p { color: var(--dark); font-weight: 300; margin-bottom: 1.4em; }
.service-card .textlink { margin-top: auto; }

/* =========================================================
   RECENZIE
   ========================================================= */
.testimonials {
	padding: 70px 0;
	background-image: var(--testi-bg);
	background-size: cover;
	background-position: center;
}
.testi-slider { position: relative; max-width: 820px; margin: 0 auto; overflow: hidden; }
.testi-slider__track { display: flex; transition: transform .5s ease; }
.testi {
	flex: 0 0 100%;
	margin: 0;
	padding: 0 50px;
	text-align: center;
}
.testi blockquote {
	margin: 0 0 18px;
	font-size: 18px;
	font-style: italic;
	line-height: 1.7;
	color: var(--dark);
}
.testi figcaption { font-family: var(--font-deco); color: var(--green); font-size: 18px; }
.testi-slider__nav {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px;
	border: none; border-radius: 50%;
	background: rgba(255,255,255,.85);
	color: var(--dark);
	font-size: 26px; line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.testi-slider__nav--prev { left: 0; }
.testi-slider__nav--next { right: 0; }
.testi-slider__nav:hover { background: var(--green); color: #fff; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { padding: 60px 0; background: #f7f6f3; }
.newsletter__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.newsletter__title { font-family: var(--font-deco); font-size: 30px; margin-bottom: 1em; }
.newsletter__form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: stretch;
}
.newsletter__form input[type="email"] {
	font-family: var(--font-body);
	font-size: 15px;
	padding: 14px 18px;
	border: 1px solid #d6d6d6;
	border-radius: 4px;
	background: #fff;
}
.newsletter__form input[type="email"]:focus { outline: none; border-color: var(--green); }
.newsletter__consent {
	grid-column: 1 / -1;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 13px; color: var(--muted); margin-top: 6px;
}
.newsletter__consent input { accent-color: var(--green); }

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.blog-preview { padding: 65px 0; }
.blog-preview__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}
.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0,0,0,.08);
	transition: box-shadow .3s, transform .3s;
}
.post-card:hover { box-shadow: 0 22px 50px rgba(0,0,0,.14); transform: translateY(-6px); }
.post-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 11;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card__media:hover img { transform: scale(1.05); }
.post-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 22px; margin-bottom: .6em; }
.post-card__title a { color: var(--dark); }
.post-card__title a:hover { color: var(--green); }
.post-card__excerpt { color: var(--dark); font-weight: 300; font-size: 15px; margin-bottom: 1.4em; }
.readmore {
	margin-top: auto;
	color: var(--green);
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.readmore:hover { color: var(--ink); }
.blog-preview__cta { text-align: center; margin-top: 55px; }

/* =========================================================
   FOOTER / KONTAKT
   ========================================================= */
.site-footer { padding: 70px 0; background: var(--white); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.site-footer__media img {
	width: 100%;
	max-height: 550px;
	object-fit: cover;
	object-position: center 25%;
	border-radius: 90px;
	box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
/* kontakt v bielej karte s tieňom */
.site-footer__contact {
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 20px 55px rgba(0,0,0,.10);
	padding: 60px 60px 40px;
}
.site-footer__title { font-family: var(--font-deco); font-weight: 300; font-size: 42px; color: var(--ink); margin-bottom: .25em; }
.site-footer__role { font-family: var(--font-alt); font-weight: 600; color: var(--ink); margin-bottom: .15em; }
.site-footer__tag { color: var(--green); font-weight: 500; font-size: 15px; margin-bottom: 1.6em; line-height: 1.5; }
.contact-list { list-style: none; margin: 0; padding: 0; font-size: 17px; }
.contact-list li { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; color: var(--dark); }
.contact-list__icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 22px; color: var(--ink); }
.contact-list a { color: var(--dark); }
.contact-list a:hover { color: var(--green); }

.social-row { display: flex; gap: 14px; margin-top: 28px; }
.social-row__link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: #f2f4f6;
	color: var(--ink);
	transition: background .2s, color .2s, transform .2s;
}
.social-row__link:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
/* nevyplnené siete — zobrazené, ale jemne stlmené a neklikateľné (mamka doplní URL) */
.social-row__link--soon { opacity: .4; cursor: default; }
.social-row__link--soon:hover { background: #f2f4f6; color: var(--ink); transform: none; }

.site-footer__legal { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.site-footer__legal a { color: #9a8d7b; font-size: 14px; font-weight: 300; }
.site-footer__legal a:hover { color: var(--accent); }

/* =========================================================
   STRÁNKA / ČLÁNOK / ARCHÍV
   ========================================================= */
/* --- Stránka --- */
.page__header { padding: 56px 0 0; text-align: center; }
.page__title { font-family: var(--font-deco); font-weight: 300; font-size: 45px; color: var(--ink); margin: 0; }
.page__body {
	max-width: 760px;
	padding-top: 30px;
	padding-bottom: 70px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: var(--dark);
}
.page__body p { margin: 0 0 1.1em; }
.page__body b, .page__body strong { font-weight: 600; color: var(--ink); }
.page__body h2, .page__body h3, .page__body h4 {
	font-family: var(--font-deco);
	font-weight: 300;
	color: var(--ink);
	line-height: 1.2;
	margin: 1.3em 0 .5em;
}
.page__body h2 { font-size: 34px; }
.page__body h3 { font-size: 26px; }
.page__body h4 { font-size: 22px; }
.page__body a { color: var(--green); text-decoration: underline; }
.page__body ul, .page__body ol { margin: 0 0 1.2em; padding-left: 1.2em; }
.page__body li { margin-bottom: .4em; }
.page__body img { border-radius: 8px; margin: 1.5em 0; }

/* =========================================================
   MOŽNOSTI SPOLUPRÁCE (offer page)
   ========================================================= */
.offer-page__intro {
	max-width: 780px;
	text-align: center;
	padding: 26px 0 6px;
	font-weight: 300;
	color: var(--dark);
	line-height: 1.7;
}
.offer-page__lead { font-size: 19px; color: var(--ink); margin-bottom: .8em; }

.offer-section { padding: 52px 0; }
.offer-section--alt { background: #f7f8fa; }
.offer-section__sub { margin-top: 1.1em; }
.offer-section .section-subtitle { margin-bottom: 2.4rem; }

.offer-list { display: flex; flex-direction: column; gap: 26px; max-width: 940px; margin: 0 auto; }

.offer {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 30px;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0,0,0,.08);
}
.offer__media { align-self: stretch; }
.offer__media img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; display: block; }
.offer__body { padding: 26px 32px 26px 0; }
.offer__title { font-size: 23px; color: var(--dark); margin-bottom: .35em; line-height: 1.25; }
.offer__price { font-family: var(--font-alt); font-weight: 600; color: var(--green); margin-bottom: .7em; }
.offer__price-old { text-decoration: line-through; color: var(--muted); font-weight: 400; margin-right: 8px; }
.offer__short { color: var(--dark); font-weight: 300; margin-bottom: 1.2em; }
.offer__full { color: var(--dark); font-weight: 300; line-height: 1.7; margin-bottom: 1.2em; }
.offer__full p { margin: 0 0 .9em; }
.offer__full ul { margin: 0 0 1em; padding-left: 1.2em; }
.offer__full li { margin-bottom: .3em; }
.offer__full strong { font-weight: 600; color: var(--ink); }
.offer__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.offer__toggle { background: none; border: none; cursor: pointer; padding: 0; }

.offer-ref {
	max-width: 940px;
	margin: 34px auto 0;
	background: #fff;
	border-left: 4px solid var(--green);
	border-radius: 10px;
	padding: 26px 32px;
	box-shadow: 0 8px 26px rgba(0,0,0,.06);
}
.offer-ref blockquote { margin: 0 0 .8em; font-weight: 300; font-style: italic; color: var(--dark); line-height: 1.7; }
.offer-ref figcaption { font-family: var(--font-deco); color: var(--green); font-size: 18px; }

.offer-prose, .offer-message { padding: 52px 0; }
.offer-prose--alt { background: #f7f8fa; }
.offer-prose .container, .offer-message .container { max-width: 820px; }
.offer-prose__list, .offer-prose ul { list-style: none; margin: 1.4em auto 0; padding: 0; max-width: 640px; text-align: left; }
.offer-prose__list li, .offer-prose ul li { position: relative; padding-left: 30px; margin-bottom: .9em; color: var(--dark); font-weight: 300; line-height: 1.7; }
.offer-prose__list li::before, .offer-prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.offer-prose p, .offer-message p { color: var(--dark); font-weight: 300; line-height: 1.7; margin: 0 0 1.1em; text-align: center; }
.offer-message { text-align: center; }
.offer-message p { font-size: 18px; }

@media (max-width: 880px) {
	.offer { grid-template-columns: 1fr; gap: 0; }
	.offer__media img { min-height: 200px; }
	.offer__body { padding: 22px 24px 26px; }
}

/* =========================================================
   KTO SOM (bio — editoriálne kapitoly)
   ========================================================= */
.bio-hero { text-align: center; padding: 58px 0 28px; }
.bio-hero__eyebrow { color: var(--gold); font-family: var(--font-alt); font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.bio-hero__title { font-family: var(--font-deco); font-weight: 300; font-size: 42px; color: var(--ink); line-height: 1.25; max-width: 740px; margin: 16px auto 0; }
.bio-hero__lead { color: var(--muted); font-weight: 300; font-size: 18px; line-height: 1.65; max-width: 620px; margin: 18px auto 0; }
.bio-hero__rule { width: 60px; height: 2px; background: var(--gold); border: 0; margin: 30px auto 0; }

.bio-chapter { padding: 44px 0; }
.bio-chapter__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.bio-chapter--rev .bio-chapter__inner { direction: rtl; }
.bio-chapter--rev .bio-chapter__inner > * { direction: ltr; }
.bio-chapter__media img { width: 100%; height: 440px; object-fit: cover; border-radius: 18px; box-shadow: 0 16px 40px rgba(0,0,0,.12); display: block; }
.bio-chapter__title { font-family: var(--font-deco); font-weight: 300; font-size: 27px; color: var(--ink); margin: 0 0 16px; }
.bio-chapter__body p { color: var(--dark); font-weight: 300; line-height: 1.8; margin: 0 0 1em; }
.bio-chapter__body strong { font-weight: 600; color: var(--ink); }

/* O mne — jeden súvislý text + záverečná výzva */
.bio-story { padding: 6px 0 60px; }
.bio-story .container { max-width: 720px; }
.bio-story__text { color: var(--dark); font-weight: 300; font-size: 18px; line-height: 1.85; }
.bio-story__text p { margin: 0 0 1.25em; }
.bio-story__text p:first-child { font-size: 21px; line-height: 1.7; color: var(--ink); }
.bio-story__text strong { font-weight: 600; color: var(--ink); }
.bio-story__cta {
	margin-top: 3rem;
	text-align: center;
	background: #f7f3ec;
	border-radius: 20px;
	padding: 46px 36px;
}
.bio-story__cta-title { font-family: var(--font-deco); font-weight: 300; font-size: 30px; color: var(--accent-dark); margin: 0 0 .5em; }
.bio-story__cta p { color: var(--dark); font-weight: 300; font-size: 18px; line-height: 1.7; max-width: 520px; margin: 0 auto 1.7em; }
@media (max-width: 700px) {
	.bio-story__text p:first-child { font-size: 19px; }
	.bio-story__cta { padding: 34px 22px; }
	.bio-story__cta-title { font-size: 25px; }
}

.bio-work { padding: 52px 0 20px; }
.bio-work .container { max-width: 1060px; }
.bio-work__eyebrow { display: block; text-align: center; color: var(--gold); font-family: var(--font-alt); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 30px; }
.bio-work__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 54px; align-items: start; }
.bio-work__media img { width: 100%; border-radius: 18px; box-shadow: 0 16px 40px rgba(0,0,0,.14); display: block; position: sticky; top: 90px; }
.bio-work__text p { color: var(--dark); font-weight: 300; font-size: 17px; line-height: 1.85; margin: 0 0 1.15em; }
.bio-work__text p:first-child { font-size: 19px; color: var(--ink); }
.bio-work__text strong { font-weight: 600; color: var(--ink); }
.bio-work__quote {
	margin: 1.6em 0 0;
	padding: 22px 0 8px 26px;
	border-left: 3px solid var(--gold);
	font-family: var(--font-deco);
	font-style: italic;
	font-size: 23px;
	line-height: 1.5;
	color: var(--ink);
}
.bio-work__quote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--font-alt); font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--gold); }
@media (max-width: 820px) {
	.bio-work__grid { grid-template-columns: 1fr; gap: 30px; }
	.bio-work__media img { position: static; max-width: 420px; margin: 0 auto; }
	.bio-work__quote { font-size: 21px; }
}

.bio-certs { padding: 46px 0 78px; }
.bio-certs__head { text-align: center; max-width: 680px; margin: 0 auto 28px; }
.bio-certs__head h2 { font-family: var(--font-deco); font-weight: 300; font-size: 27px; color: var(--ink); margin: 0 0 10px; }
.bio-certs__head p { color: var(--muted); font-weight: 300; line-height: 1.7; }
.bio-certs__box { background: #f7f3ec; border-radius: 18px; padding: 34px 40px; max-width: 900px; margin: 0 auto; }
.bio-certs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; margin: 0; padding: 0; list-style: none; }
.bio-certs__grid li { position: relative; padding-left: 26px; color: var(--dark); font-weight: 300; line-height: 1.55; }
.bio-certs__grid li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

@media (max-width: 760px) {
	.bio-chapter__inner, .bio-chapter--rev .bio-chapter__inner { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
	.bio-chapter__media { max-width: 440px; margin: 0 auto; }
	.bio-chapter__media img { height: 340px; }
	.bio-certs__grid { grid-template-columns: 1fr; }
	.bio-hero__title { font-size: 31px; }
	.bio-certs__box { padding: 26px 24px; }
}

/* =========================================================
   REFERENCIE (page)
   ========================================================= */
.referencie-page .section-subtitle { margin-top: 16px; }
.referencie-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	max-width: 1000px;
	margin: 12px auto 72px;
	align-items: start;
}
.referencia {
	margin: 0;
	background: #fff;
	border-radius: 16px;
	padding: 30px 32px;
	box-shadow: 0 12px 35px rgba(0,0,0,.08);
	border-top: 3px solid var(--green);
}
.referencia blockquote { margin: 0 0 1em; font-weight: 300; font-style: italic; color: var(--dark); line-height: 1.7; }
.referencia figcaption { font-family: var(--font-deco); color: var(--green); font-size: 18px; }
@media (max-width: 760px) { .referencie-grid { grid-template-columns: 1fr; } }

/* =========================================================
   MOŽNOSTI SPOLUPRÁCE — G layout (cesta klienta)
   ========================================================= */
.journey { position: relative; padding-left: 46px; max-width: 900px; margin: 8px auto 0; }
.journey::before { content: ""; position: absolute; left: 15px; top: 14px; bottom: 14px; width: 2px; background: #eadfce; }
.jstep { position: relative; margin-bottom: 22px; scroll-margin-top: 150px; }
.jstep__dot {
	position: absolute; left: -46px; top: 0;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--accent); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-alt); font-weight: 700; font-size: 14px;
}
.jstep__card { background: #fff; border: 1px solid #efe9df; border-radius: 16px; padding: 22px 26px; box-shadow: 0 6px 24px rgba(0,0,0,.05); }
.jstep__stage { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-alt); }
.jstep__title { font-family: var(--font-deco); font-weight: 300; font-size: 24px; color: var(--ink); margin: 4px 0 12px; }

.svc { border-top: 1px solid #efe9df; padding: 16px 0 14px; }
.svc:first-of-type { border-top: none; padding-top: 4px; }
.svc-main { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.svc-name { font-weight: 600; font-size: 17px; color: var(--ink); flex: 1; min-width: 200px; }
.svc-meta { color: var(--muted); font-size: 13px; }
.svc-price { font-weight: 700; color: var(--accent); font-size: 17px; white-space: nowrap; }
.svc-price__old { color: var(--muted); font-weight: 400; font-size: 14px; text-decoration: line-through; margin-right: 4px; }
/* popis služby — jeden text, zbalený na 2 riadky s fade, plynule sa vyroluje */
.svc-desc {
	position: relative;
	color: var(--dark); font-weight: 300; font-size: 14.5px; line-height: 1.75;
	max-width: 64%;
	margin: 8px 0 0;
	overflow: hidden;
	max-height: 3.4em;            /* ~2 riadky v zbalenom stave */
	transition: max-height .45s ease;
	-webkit-mask-image: linear-gradient(180deg,#000 50%,transparent 100%);
	        mask-image: linear-gradient(180deg,#000 50%,transparent 100%);
}
.svc.is-open .svc-desc { -webkit-mask-image: none; mask-image: none; }
.svc-desc > :first-child { margin-top: 0; }
.svc-desc p { margin: 0 0 .9em; }
.svc-desc ul { margin: 0 0 1em; padding-left: 1.2em; }
.svc-desc li { margin-bottom: .35em; }
.svc-desc strong { font-weight: 600; color: var(--ink); }
/* spodný riadok: Skryť/Zistiť viac vľavo, tlačidlo (až po rozbalení) vpravo */
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; }
.svc-order {
	position: relative; top: -40px;
	opacity: 0; visibility: hidden; transform: translateY(4px);
	transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.svc.is-open .svc-order { opacity: 1; visibility: visible; transform: none; }
.svc-toggle {
	display: inline-flex; align-items: center; gap: 7px;
	background: none; border: none; padding: 0; cursor: pointer;
	color: var(--accent); font-family: var(--font-body); font-weight: 600; font-size: 13px;
}
.svc-toggle svg { transition: transform .25s; }
.svc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.svc-toggle__less { display: none; }
.svc-toggle[aria-expanded="true"] .svc-toggle__more { display: none; }
.svc-toggle[aria-expanded="true"] .svc-toggle__less { display: inline; }

@media (max-width: 720px) {
	.journey { padding-left: 36px; }
	.journey::before { left: 12px; }
	.jstep__dot { left: -36px; width: 28px; height: 28px; }
	.jstep__card { padding: 20px 20px; }
	.svc-desc { max-width: 100%; }
	/* na mobile je text na celú šírku → nedvíhaj tlačidlo (neprekrývalo by text) */
	.svc-order { top: 0; }
}

/* --- Detail článku --- */
/* Pozn.: `.single` bez tagu by sa lepilo aj na <body class="single">, preto article.single. */
article.single { padding-top: 24px; }
.single__featured { text-align: center; }
.single__featured img {
	width: 100%;
	max-width: 860px;
	height: 500px;
	object-fit: cover;
	border-radius: 10px;
	margin: 0 auto;
}
.single-avatar { text-align: center; margin-top: -55px; position: relative; z-index: 2; }
.single-avatar img {
	display: inline-block;
	width: 110px; height: 110px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.single__head { text-align: center; padding-top: 14px; }
.single__author {
	font-family: var(--font-alt);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 .7em;
}
.single__title {
	font-family: var(--font-alt);
	font-weight: 600;
	font-size: 44px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--dark);
	max-width: 640px;
	margin: 0 auto;
}

.single__body {
	max-width: 760px;
	padding-top: 34px;
	padding-bottom: 50px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	text-align: center;
	color: var(--dark);
}
.single__body p { margin: 0 0 1.1em; }
.single__body img { border-radius: 14px; margin: 1.8em auto; }
.single__body h2, .single__body h3, .single__body h4 {
	font-family: var(--font-alt);
	font-weight: 600;
	color: var(--dark);
	line-height: 1.2;
	margin: 1.2em auto .6em;
}
.single__body h2 { font-size: 44px; }
.single__body h3 { font-size: 30px; }
.single__body h4 { font-size: 24px; }
.single__body a { color: var(--green); text-decoration: underline; }
.single__body ul, .single__body ol { display: inline-block; text-align: left; }
.single__nav { text-align: center; padding-bottom: 70px; }

.archive { padding: 70px 0; }
.pagination { margin-top: 50px; text-align: center; }
.pagination .page-numbers {
	display: inline-block; padding: 8px 14px; margin: 0 3px;
	border-radius: 4px; color: var(--dark); font-weight: 600;
}
.pagination .page-numbers.current { background: var(--green); color: #fff; }
.pagination a.page-numbers:hover { background: #eee; }

/* =========================================================
   RESPONZÍVNE
   ========================================================= */
@media (max-width: 1024px) {
	.intro__name { font-size: 32px; }
	.section-title { font-size: 30px; }
}

@media (max-width: 880px) {
	.site-nav--main { display: none; }
	.site-header__inner { position: relative; justify-content: center; min-height: 92px; }
	.site-logo { margin: 0 auto; }
	.site-logo img { height: 58px; }
	.nav-toggle {
		display: flex; flex-direction: column; justify-content: center; gap: 5px;
		width: 42px; height: 42px; border: none; background: none; cursor: pointer;
		position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	}
	.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--dark); border-radius: 2px; transition: .3s; }
	.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

	.mobile-nav { display: block; max-height: 0; overflow: hidden; transition: max-height .35s ease; background: #fff; }
	.mobile-nav.is-open { max-height: 640px; }
	.mobile-nav .menu { list-style: none; margin: 0; padding: 10px 0; }
	.mobile-nav .menu a {
		display: block; padding: 13px 24px;
		font-weight: 500; text-transform: uppercase; font-size: 15px;
		color: var(--dark); border-bottom: 1px solid #f0f0f0;
	}
	.mobile-nav .menu a:hover { color: var(--green); }
	.mobile-nav__sub { padding-left: 44px !important; text-transform: none !important; font-weight: 400 !important; font-size: 14px !important; color: var(--muted) !important; }

	.intro__inner, .ebook__inner { grid-template-columns: 1fr; gap: 36px; }
	.intro__media { order: 2; } /* mobil: text prvý, hero fotka druhá */
	.ebook__media { order: -1; }
	.services__grid, .blog-preview__grid { grid-template-columns: 1fr; gap: 30px; max-width: 420px; margin: 0 auto; }
	.intro, .ebook, .services, .testimonials, .blog-preview, .newsletter { padding: 60px 0; }
	.site-footer { padding-top: 60px; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; text-align: center; }
	.site-footer__media { order: -1; max-width: 420px; margin: 0 auto; }
	.contact-list li { justify-content: center; text-align: left; }
	.intro { background-size: 500px auto; }
	.intro__name { font-size: 30px; }
	.newsletter__form { grid-template-columns: 1fr; }
	.testi { padding: 0 30px; }
}

@media (max-width: 480px) {
	.intro__name { font-size: 26px; }
	.testi-slider__nav { display: none; }
}
