/* =========================================================
   Filip Urban – hlavní styly
   ========================================================= */

:root {
	--fu-bg: #0d0d0d;
	--fu-bg-2: #111111;
	--fu-panel: #151515;
	--fu-gold: #c9963f;
	--fu-gold-light: #d9ab5e;
	--fu-text: #eae6dd;
	--fu-muted: #b6b2a9;
	--fu-gray: #8d8d8d;
	--fu-line: rgba(201, 150, 63, 0.35);
	--fu-line-soft: rgba(233, 227, 215, 0.12);
	--serif: "Cormorant Garamond", Georgia, serif;
	--display: "Playfair Display", Georgia, serif;
	--sans: "Jost", "Helvetica Neue", sans-serif;
	--script: "Whisper", cursive;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
	background: var(--fu-bg);
	color: var(--fu-text);
	font-family: var(--serif);
	font-size: 19px;
	line-height: 1.6;
	/* verzálkové číslice – minuskové číslice Cormorantu jinak „skáčou“ pod řádek */
	font-variant-numeric: lining-nums;
	font-feature-settings: "lnum" 1;
	-webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.fu-container {
	width: min(1180px, 92vw);
	margin: 0 auto;
}

.fu-italic { font-style: italic; }

.fu-script {
	font-family: var(--script);
	color: var(--fu-gold-light);
	font-weight: 400;
}

/* ---------- Hlavička ---------- */

.fu-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 20;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.fu-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 2rem;
	padding: 1.6rem 0;
}

.fu-header__right {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.fu-header__logo {
	font-family: var(--display);
	font-size: 1.35rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--fu-text);
	white-space: nowrap;
}

.fu-header__logo img { max-height: 56px; width: auto; }

.fu-header__nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.fu-nav {
	display: flex;
	gap: 2.2rem;
	list-style: none;
}

.fu-nav a {
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--fu-text);
	padding-bottom: 0.45rem;
	border-bottom: 1px solid transparent;
	transition: color 0.2s, border-color 0.2s;
}

.fu-nav a:hover { color: var(--fu-gold-light); }

.fu-nav .current-menu-item > a,
.fu-nav .current_page_item > a {
	color: var(--fu-gold);
	border-bottom-color: var(--fu-gold);
}

.fu-header__lang {
	font-family: var(--sans);
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	color: var(--fu-muted);
}

.fu-header__lang a {
	color: var(--fu-muted);
	text-decoration: none;
	transition: color 0.25s;
}

.fu-header__lang a:hover { color: var(--fu-gold-light); }
.fu-header__lang a.is-active { color: var(--fu-gold); }

/* jazykový přepínač uvnitř mobilního menu – zobrazuje se až na mobilu */
.fu-header__lang--menu { display: none; }

.fu-header__burger { display: none; }

/* ---------- Hero ---------- */

.fu-hero {
	position: relative;
	/* stejná černá jako okraje fotky – fotka tak splývá s pozadím */
	background: #020202;
	overflow: hidden;
	/* pevná výška + vycentrovaný obsah – hero je všude stejně vysoké
	   bez ohledu na délku textu pod nadpisem */
	display: flex;
	align-items: center;
}

.fu-hero--home { min-height: 43rem; }
.fu-hero--page { min-height: 38rem; }

/* Fotka ukotvená k pravému okraji, bez zvětšování – vlevo zůstává černá plocha pro text.
   Odsazení shora, aby hlava nebyla nalepená na navigaci; spodní hrana se vytrácí do pozadí. */
.fu-hero__img {
	position: absolute;
	top: 5.5rem;
	right: 0;
	width: 58%;
	height: calc(100% - 5.5rem);
	object-fit: cover;
	object-position: 0% 0%;
	filter: grayscale(1);
	/* prolnutí levé hrany a spodku do černého pozadí – fotka opticky pokračuje */
	-webkit-mask-image:
		linear-gradient(to right, transparent 0%, #000 22%, #000 100%),
		linear-gradient(to bottom, #000 72%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image:
		linear-gradient(to right, transparent 0%, #000 22%, #000 100%),
		linear-gradient(to bottom, #000 72%, transparent 100%);
	mask-composite: intersect;
}

.fu-hero__inner {
	position: relative;
	z-index: 2;
}

/* horní padding větší než dolní – kompenzace navigace překrývající hero */
.fu-hero--home .fu-hero__inner {
	padding: 9rem 0 5rem;
}

.fu-hero--page .fu-hero__inner {
	padding: 8rem 0 4rem;
}

.fu-hero__title {
	font-family: var(--display);
	font-weight: 400;
	/* pevná velikost – mezi desktopem a tabletem se přepíná skokem, ne plynule */
	font-size: 4.6rem;
	color: var(--fu-gold-light);
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.fu-hero__dash {
	display: block;
	width: 46px;
	height: 1px;
	background: var(--fu-gold);
	margin: 1.6rem 0 1.4rem;
}

.fu-hero__role {
	font-size: 1.25rem;
	color: var(--fu-text);
	margin: 1.4rem 0 1.2rem;
	letter-spacing: 0.06em;
}

.fu-hero__text,
.fu-hero__subtitle {
	max-width: 30rem;
	font-size: 1.1rem;
	color: var(--fu-muted);
	margin-bottom: 2.2rem;
}

.fu-hero__subtitle { font-size: 1.2rem; color: #d6cfc2; margin-bottom: 0; }

/* ---------- Tlačítka a odkazy ---------- */

.fu-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	font-family: var(--sans);
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--fu-gold);
	border: 1px solid var(--fu-line);
	padding: 0.95rem 1.6rem;
	background: transparent;
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
}

.fu-btn:hover {
	background: rgba(201, 150, 63, 0.12);
	color: var(--fu-gold-light);
}

.fu-arrow {
	display: inline-flex;
	width: 34px;
}

.fu-arrow svg { width: 100%; height: auto; }

.fu-textlink {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	gap: 0.7rem;
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--fu-gold);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.fu-textlink:hover { color: var(--fu-gold-light); }

.fu-gold-link { color: var(--fu-gold); transition: color 0.2s; }
.fu-gold-link:hover { color: var(--fu-gold-light); }

.fu-plain-link { color: var(--fu-text); transition: color 0.2s; }
.fu-plain-link:hover { color: var(--fu-gold-light); }

/* ---------- Sekce ---------- */

.fu-section { padding: 4.5rem 0 1.5rem; }
.fu-section--tight { padding-top: 2rem; }
.fu-section--first { padding-top: 9rem; }

.fu-section-label {
	font-family: var(--sans);
	font-size: 1.3rem;
	font-weight: 400;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--fu-gold);
	margin-bottom: 1.8rem;
}

.fu-section-label--rule {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.fu-section-label--rule::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--fu-line);
}

.fu-section-label--dash::after {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background: var(--fu-gold);
	margin-top: 0.9rem;
}

.fu-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.8rem;
}

.fu-section-head .fu-section-label { margin-bottom: 0; }

/* Odkazy vedle nadpisů sekcí (Zobrazit vše, Celý kalendář…) – bílý text, zlatá šipka */
.fu-section-head .fu-textlink { color: var(--fu-text); }
.fu-section-head .fu-textlink .fu-arrow { color: var(--fu-gold); }
.fu-section-head .fu-textlink:hover { color: var(--fu-gold-light); }

.fu-prose p {
	margin-bottom: 1.15rem;
	color: #d8d1c4;
	font-size: 1.08rem;
}

/* ---------- O Filipovi (HP) ---------- */

/* Sekce O Filipovi jde přes celou šířku – fotka od kraje splývá s pozadím */
.fu-about { padding: 1rem 0 0; }

.fu-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.fu-about__content {
	/* 620px na text + pravý padding zarovnávající obsah na šířku kontejneru;
	   box-sizing: border-box – padding musí být v max-width započítaný,
	   jinak na velkých monitorech text mizí */
	max-width: calc(620px + max(4vw, (100vw - 1180px) / 2));
	padding: 4rem max(4vw, calc((100vw - 1180px) / 2)) 4rem 0;
}

.fu-about__photo {
	padding: 0;
}

/* fotka splývá s černým pozadím – výrazná vinětace do ztracena na všech okrajích */
.fu-about__photo img {
	display: block;
	max-width: 100%;
	max-height: 780px;
	width: auto;
	margin: 0 auto;
	-webkit-mask-image:
		linear-gradient(to right, transparent 0%, #000 26%, #000 74%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image:
		linear-gradient(to right, transparent 0%, #000 26%, #000 74%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
	mask-composite: intersect;
}

.fu-about__content .fu-btn { margin-top: 1rem; }

/* ---------- Galerie ---------- */

/* Šířka sloupce se počítá ze šířky .fu-container – min(1180px, 92vw) –,
   aby se z ní dala odvodit výška řádku. Dlaždice mají díky tomu řízený
   poměr a fotky se neořezávají dvakrát (dřív čtverec + nízká dlaždice). */
.fu-gallery {
	--fu-gal-sloupce: 4;
	--fu-gal-mezera: 14px;
	--fu-gal-sirka-sloupce: calc(
		(min(1180px, 92vw) - (var(--fu-gal-sloupce) - 1) * var(--fu-gal-mezera)) / var(--fu-gal-sloupce)
	);
	display: grid;
	grid-template-columns: repeat(var(--fu-gal-sloupce), 1fr);
	/* výška řádku = šířka sloupce → čtverec, všechny fotky stejné */
	grid-auto-rows: var(--fu-gal-sirka-sloupce);
	gap: var(--fu-gal-mezera);
}

.fu-gallery__item {
	overflow: hidden;
	display: block;
	border: 1px solid var(--fu-line-soft);
	transition: border-color 0.25s;
}

.fu-gallery__item:hover { border-color: var(--fu-line); }

.fu-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* lidé bývají v horní části záběru, zbytkový ořez tedy bereme zespodu */
	object-position: center 40%;
	transition: transform 0.5s ease, opacity 0.3s;
}

.fu-gallery__item:hover img { transform: scale(1.04); opacity: 0.9; }

.fu-gallery:not(.fu-gallery--stranka) > .fu-gallery__item:first-child {
	grid-column: span 2;
	grid-row: span 2;
}


/* Galerie na podstránce – větší fotky, ať není člověk „rozseknutý“.
   Výška řádku se počítá z šířky sloupce, aby dlaždice měly stejný poměr
   jako předlohy (na šířku ≈ 1,42), takže se ořezává minimálně.
   Šířka .fu-container je min(1180px, 92vw) – stejný vzorec je i tady. */
.fu-gallery--stranka {
	--fu-gal-sloupce: 3;
	--fu-gal-mezera: 16px;
	grid-auto-rows: calc(var(--fu-gal-sirka-sloupce) / 1.42);
}

/* Fotky na výšku dostanou dvojnásobnou výšku (poměr ≈ 0,70). */
.fu-gallery--stranka > .fu-gallery__item--portret { grid-row: span 2; }

/* Úvodní fotka na šířku přes dva sloupce a dva řádky (poměr ≈ 1,43). */
.fu-gallery--stranka > .fu-gallery__item--hero {
	grid-column: span 2;
	grid-row: span 2;
}

/* Od tabletu níž ubíráme sloupce dřív než u ostatních mřížek – tři úzké
   sloupce by daly zase jen nízké dlaždice a ořezaného člověka.
   Zároveň jsou všechny fotky stejné: výška řádku = šířce sloupce, tedy
   čtverec, a velká/vysoká dlaždice se ruší. */
@media (max-width: 1024px) {
	.fu-gallery--stranka {
		--fu-gal-sloupce: 2;
		grid-auto-rows: var(--fu-gal-sirka-sloupce);
	}

	.fu-gallery--stranka > .fu-gallery__item--portret,
	.fu-gallery--stranka > .fu-gallery__item--hero {
		grid-column: auto;
		grid-row: auto;
	}
}

/* Na mobilu jeden sloupec, čtverec zůstává (dědí se z pravidla výše). */
@media (max-width: 700px) {
	.fu-gallery--stranka { --fu-gal-sloupce: 1; }
}


/* Ovládání carouselu (šipky + tečky) – aktivní až od tabletové verze */
.fu-carousel-controls { display: none; }

.fu-carousel-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--fu-line);
	background: none;
	color: var(--fu-gold);
	font-size: 1.5rem;
	line-height: 0;
	/* glyfy ‹ › sedí na účaří níž – dorovnání na optický střed */
	padding: 0 0 6px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s, color 0.25s;
}

.fu-carousel-arrow:hover {
	background: rgba(201, 150, 63, 0.12);
	color: var(--fu-gold-light);
}

.fu-carousel-dots {
	display: flex;
	gap: 0.7rem;
}

.fu-carousel-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid var(--fu-gold);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background 0.25s;
}

.fu-carousel-dot.is-active { background: var(--fu-gold); }

/* ---------- Recenze ---------- */

.fu-reviews {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.fu-review {
	margin: 0;
	border: 1px solid var(--fu-line-soft);
	padding: 2.2rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s;
}

.fu-review:hover { border-color: var(--fu-line); }

.fu-review__mark {
	color: var(--fu-gold);
	width: 40px;
	margin-bottom: 1.4rem;
}

.fu-review__mark svg { width: 100%; height: auto; }

.fu-review__text {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--fu-text);
	margin-bottom: 1.6rem;
	/* Dlouhá citace se na kartě ořízne, plné znění otevře tlačítko v okně. */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}

.fu-review__more {
	align-self: flex-start;
	margin: -0.4rem 0 1.6rem;
	padding: 0 0 3px;
	background: none;
	border: none;
	border-bottom: 1px solid currentColor;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--fu-gold);
	transition: color 0.2s ease;
}

.fu-review__more:hover { color: var(--fu-gold-light); }

/* Plné znění recenze v lightboxu */
.fu-review--modal {
	max-width: 720px;
	margin: 0 auto;
	max-height: 82vh;
	overflow-y: auto;
	background: var(--fu-panel);
	border-color: var(--fu-line);
	padding: 3rem 3.2rem 2.6rem;
}

.fu-review--modal .fu-review__text {
	display: block;
	-webkit-line-clamp: none;
	overflow: visible;
	line-height: 1.7;
}

.fu-review__source {
	margin-top: auto;
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	line-height: 2.1;
	text-transform: uppercase;
	color: var(--fu-gold);
}

/* Podtržení přes text-decoration – u odkazu přes víc řádků se nelepí na další řádek. */
.fu-review__source a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
	transition: opacity 0.2s ease;
}

.fu-review__source a:hover { opacity: 0.75; }

/* ---------- Videa ---------- */

.fu-videos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}


.fu-video-card {
	border: 1px solid var(--fu-line-soft);
	padding: 1.5rem 1.5rem 1.3rem;
	transition: border-color 0.25s;
}

.fu-video-card:hover { border-color: var(--fu-line); }

.fu-video-card__media {
	position: relative;
	display: block;
	width: 100%;
	border: none;
	padding: 0;
	background: var(--fu-panel);
	cursor: pointer;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.fu-video-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fu-video-card__media:hover img { transform: scale(1.03); }

.fu-video-card__media iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.fu-video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.65);
	border: 1px solid rgba(233, 227, 215, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.25s, border-color 0.25s;
}

.fu-video-card__play svg { width: 26px; height: 26px; margin-left: 3px; }

.fu-video-card__media:hover .fu-video-card__play {
	background: rgba(201, 150, 63, 0.75);
	border-color: var(--fu-gold-light);
}

.fu-video-card__duration {
	position: absolute;
	right: 12px;
	bottom: 12px;
	font-family: var(--sans);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	background: rgba(0, 0, 0, 0.75);
	padding: 0.2rem 0.55rem;
	color: #fff;
}

.fu-video-card__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.35rem;
	color: var(--fu-gold-light);
	text-align: left;
	margin: 1.3rem 0 0.7rem;
}

.fu-video-card__meta {
	font-family: var(--sans);
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--fu-muted);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 0.4rem;
}

/* položky oddělené tečkou, zalamují se po celých blocích */
.fu-video-card__meta-item { white-space: nowrap; }

.fu-video-card__meta-item + .fu-video-card__meta-item::before {
	content: "•";
	color: var(--fu-gold);
	margin: 0 0.85em;
	font-size: 0.6rem;
}

/* ---------- Akce (HP) ---------- */

.fu-events-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}

.fu-event-card {
	border: 1px solid var(--fu-line-soft);
	padding: 1.6rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	transition: border-color 0.25s;
	/* celá karta je odkaz */
	color: inherit;
	text-decoration: none;
}

.fu-event-card:hover { border-color: var(--fu-line); }

.fu-event-card__date {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	margin-bottom: 0.6rem;
}

.fu-event-card__day {
	font-family: var(--display);
	font-size: 2.9rem;
	line-height: 1;
	color: var(--fu-gold-light);
}

.fu-event-card__month {
	font-family: var(--sans);
	font-size: 0.78rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--fu-text);
	line-height: 1.6;
}

.fu-event-card__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.35;
	color: var(--fu-text);
	/* max. 2 řádky, delší názvy se zkrátí trojtečkou */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fu-event-card__place {
	font-size: 1rem;
	color: var(--fu-muted);
	flex: 1;
}

.fu-event-card__link { margin-top: 0.8rem; }

/* ---------- Patička ---------- */

.fu-footer {
	margin-top: 0.5rem;
	padding: 2.5rem 0 2rem;
}


.fu-footer__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 2rem;
}

.fu-footer__role {
	font-family: var(--serif);
	color: var(--fu-gold);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.fu-footer__contact p { margin-bottom: 0.35rem; font-size: 1.05rem; }

.fu-footer__contact a { color: var(--fu-gold); }
.fu-footer__contact a:hover { color: var(--fu-gold-light); }

.fu-footer__socials {
	display: flex;
	gap: 1.4rem;
	justify-content: center;
}

.fu-social {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 1px solid rgba(201, 150, 63, 0.45);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--fu-gold-light);
	transition: border-color 0.25s, color 0.25s;
}

.fu-social svg { width: 27px; height: 27px; }

.fu-social:hover { border-color: var(--fu-gold-light); color: var(--fu-gold-light); background: rgba(201, 150, 63, 0.08); }

.fu-footer__monogram {
	font-size: 8rem;
	text-align: right;
	line-height: 0.9;
}

.fu-footer__brand {
	font-family: var(--display);
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-size: 1.15rem;
	color: var(--fu-gold);
}

.fu-footer__copyright {
	text-align: center;
	font-size: 0.92rem;
	color: var(--fu-gray);
	margin-top: 2.8rem;
}

/* ---------- Biografie ---------- */

.fu-bio__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 5rem;
	align-items: start;
}

.fu-bio__grid--photo { grid-template-columns: minmax(0, 420px) 1fr; }

.fu-bio__grid--intro { grid-template-columns: 1.3fr minmax(0, 420px); }

/* Sbalený text „O Filipovi“ s tlačítkem Zobrazit více */
.fu-expand {
	position: relative;
	/* Sbalenou výšku dopočítává JS podle výšky fotky vedle textu. */
	max-height: var(--fu-expand-h, 34rem);
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.fu-expand::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 8rem;
	background: linear-gradient(to bottom, rgba(13, 13, 13, 0), var(--fu-bg));
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.4s ease;
}

.fu-expand.is-open { max-height: 400rem; }
.fu-expand.is-open::after { opacity: 0; }

.fu-expand__btn {
	margin-top: 1.6rem;
	padding: 0 0 3px;
	background: none;
	border: none;
	border-bottom: 1px solid currentColor;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--fu-gold);
	transition: color 0.2s ease;
}

.fu-expand__btn:hover { color: var(--fu-gold-light); }

/* Fotka se po okrajích vytrácí do pozadí stránky */
.fu-bio__photo img {
	width: 100%;
	-webkit-mask-image:
		linear-gradient(to right, transparent 0, #000 16%, #000 84%, transparent 100%),
		linear-gradient(to bottom, transparent 0, #000 14%, #000 84%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image:
		linear-gradient(to right, transparent 0, #000 16%, #000 84%, transparent 100%),
		linear-gradient(to bottom, transparent 0, #000 14%, #000 84%, transparent 100%);
	mask-composite: intersect;
}

.fu-timeline {
	position: relative;
	padding-left: 2.2rem;
}

.fu-timeline::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 12px;
	bottom: 12px;
	width: 1px;
	background: var(--fu-line);
}

.fu-timeline__item {
	position: relative;
	margin-bottom: 2.4rem;
}

.fu-timeline__dot {
	position: absolute;
	left: -2.2rem;
	top: 10px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 1px solid var(--fu-gold);
	background: var(--fu-bg);
}

.fu-timeline__dot::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--fu-gold);
}

.fu-timeline__year {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.7rem;
	color: var(--fu-gold-light);
	margin-bottom: 0.5rem;
}

.fu-timeline__text {
	color: #d8d1c4;
	font-size: 1.05rem;
}

/* Vodorovná časová osa (milníky) – posun šipkami a tažením myší */
.fu-timeline--h {
	display: flex;
	gap: 3rem;
	padding: 0 0 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.fu-timeline--h::-webkit-scrollbar { display: none; }

.fu-timeline--h.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.fu-timeline--h::before { display: none; }

.fu-timeline--h .fu-timeline__item {
	flex: 0 0 17rem;
	margin-bottom: 0;
	padding-top: 2.1rem;
	scroll-snap-align: start;
}

/* Vodorovná linka procházející body – u každé položky až po následující bod */
.fu-timeline--h .fu-timeline__item::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 13px;
	right: -3rem;
	height: 1px;
	background: var(--fu-line);
}

.fu-timeline--h .fu-timeline__item:last-child::before { right: 0; }

.fu-timeline--h .fu-timeline__dot { left: 0; top: 0; }

.fu-timeline-nav { display: flex; gap: 0.7rem; }

.fu-timeline-nav__btn {
	width: 2.9rem;
	height: 2.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1px solid var(--fu-line);
	border-radius: 50%;
	color: var(--fu-gold);
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.fu-timeline-nav__btn:hover { border-color: var(--fu-gold); color: var(--fu-gold-light); }

.fu-timeline-nav__btn svg { width: 1.5rem; height: auto; }

.fu-timeline-nav__btn--prev svg { transform: scaleX(-1); }

.fu-cta-box {
	border: 1px solid var(--fu-line);
	padding: 2.2rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.fu-cta-box__icon {
	color: var(--fu-gold);
	width: 52px;
	flex-shrink: 0;
}

.fu-cta-box__icon svg { width: 100%; height: auto; }

.fu-cta-box__text { flex: 1; }

.fu-cta-box__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.8rem;
	color: var(--fu-gold-light);
	margin-bottom: 0.4rem;
}

.fu-cta-box__text p { color: var(--fu-muted); }

/* ---------- Kalendář ---------- */

.fu-cal__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
	gap: 4rem;
	align-items: start;
}

/* sloupce se nesmí roztahovat podle obsahu – dlouhý název akce by jinak
   rozšířil mřížku nad šířku stránky a celý web by šel posouvat do strany */
.fu-cal__list,
.fu-cal__sidebar { min-width: 0; }

.fu-cal-row {
	display: flex;
	align-items: center;
	gap: 2rem;
	border: 1px solid var(--fu-line-soft);
	padding: 1.4rem 1.8rem;
	margin-bottom: 1.1rem;
	transition: border-color 0.25s;
	/* celý řádek je odkaz */
	color: inherit;
	text-decoration: none;
}

.fu-cal-row:hover { border-color: var(--fu-line); }

.fu-cal-row__date {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	/* na úzkých displejích se datum smrskne podle obsahu */
	min-width: min(140px, 100%);
	flex-shrink: 0;
}

.fu-cal-row__day {
	font-family: var(--display);
	font-size: 2.6rem;
	line-height: 1;
	color: var(--fu-gold-light);
}

.fu-cal-row__month {
	font-family: var(--sans);
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fu-text);
	line-height: 1.6;
}

/* min-width: 0 – bez něj by se flex položka nezmenšila pod šířku nadpisu */
.fu-cal-row__info { flex: 1; min-width: 0; }

.fu-cal-row__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.3rem;
	color: var(--fu-text);
	margin-bottom: 0.3rem;
	/* nadpis akce max na 2 řádky */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	/* dlouhé názvy se zalomí i uprostřed slova, ať nikdy nepřetečou řádek */
	overflow-wrap: anywhere;
}

.fu-cal-row__place {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--fu-gold);
	font-size: 1rem;
	min-width: 0;
	overflow-wrap: anywhere;
}

.fu-cal-row__pin { width: 16px; flex-shrink: 0; display: inline-flex; }
.fu-cal-row__pin svg { width: 100%; height: auto; }

.fu-cal-row__arrow {
	width: 38px;
	color: var(--fu-gold);
	flex-shrink: 0;
}

.fu-cal-row__arrow svg { width: 100%; height: auto; }

/* Mini kalendář */

.fu-minical {
	border: 1px solid var(--fu-line-soft);
	padding: 1.4rem 1.5rem 1.6rem;
	margin-bottom: 3rem;
	font-family: var(--sans);
}

.fu-minical__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.1rem;
}

.fu-minical__title {
	font-size: 0.78rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--fu-text);
}

.fu-minical__nav {
	background: none;
	border: none;
	color: var(--fu-gold);
	font-size: 1.1rem;
	cursor: pointer;
	padding: 0.2rem 0.5rem;
}

.fu-minical__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.fu-minical__dow {
	font-size: 0.6rem;
	letter-spacing: 0.12em;
	color: var(--fu-gold);
	padding: 0.35rem 0;
}

.fu-minical__day {
	font-size: 0.74rem;
	color: var(--fu-text);
	padding: 0.42rem 0;
	position: relative;
}

.fu-minical__day--out { color: rgba(185, 177, 162, 0.35); }

/* Den s akcí – zlaté číslo + tečka pod ním, dá se na něj kliknout */
.fu-minical__day--event {
	color: var(--fu-gold-light);
	background: none;
	border: none;
	font: inherit;
	font-size: 0.74rem;
	cursor: pointer;
}

.fu-minical__day--event::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 4px;
	height: 4px;
	margin-left: -2px;
	border-radius: 50%;
	background: var(--fu-gold);
}

/* Vybraný den – kroužek kolem čísla i tečky */
.fu-minical__day--selected::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 30px;
	top: calc(50% + 1px);
	left: 50%;
	margin: -15px 0 0 -15px;
	border: 1px solid var(--fu-gold);
	border-radius: 50%;
}

/* tečka se u vybraného dne posune dovnitř kroužku */
.fu-minical__day--selected::before { bottom: 3px; }

.fu-cal__day-back { margin-top: 1.8rem; }

/* Stránkování nadcházejících koncertů */
.fu-cal-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 1.8rem;
	/* šipky zůstávají na jednom řádku s čísly – zalomení řeší až vnitřní blok */
	flex-wrap: nowrap;
}

/* čísla stránek – při větším počtu stránek se zalomí uvnitř,
   místo aby roztahovala celý výpis koncertů do šířky */
.fu-cal-pager__nums {
	display: flex;
	/* flex: 0 1 auto + min-width: 0 – blok se smrskne mezi šipky a čísla se zalomí */
	flex: 0 1 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-width: 0;
}

.fu-cal-pager .fu-carousel-arrow {
	width: 38px;
	height: 38px;
	font-size: 1.2rem;
	flex: 0 0 auto;
}

.fu-cal-pager .fu-carousel-arrow:disabled {
	opacity: 0.35;
	cursor: default;
	background: none;
	color: var(--fu-gold);
}

.fu-cal-pager__num {
	/* pevná velikost – kolečko se nesmí zmáčknout do oválu */
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: none;
	border: 1px solid transparent;
	color: var(--fu-muted);
	font-family: var(--sans);
	font-size: 0.8rem;
	cursor: pointer;
	transition: color 0.25s, border-color 0.25s;
}

.fu-cal-pager__num:hover { color: var(--fu-gold-light); }

.fu-cal-pager__num.is-active {
	border-color: var(--fu-gold);
	color: var(--fu-gold);
}

/* Archiv */

.fu-cal__archive-title { margin-top: 0; }

.fu-archive__item { border-bottom: 1px solid var(--fu-line-soft); }

.fu-archive__head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: none;
	border: none;
	color: var(--fu-text);
	font-family: var(--sans);
	padding: 0.95rem 0.2rem;
	cursor: pointer;
}

.fu-archive__month {
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	flex: 1;
	text-align: left;
}

.fu-archive__count {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	color: var(--fu-muted);
}

.fu-archive__plus {
	color: var(--fu-gold);
	font-size: 1.1rem;
	width: 1.2rem;
	text-align: center;
	transition: transform 0.25s;
}

.fu-archive__head[aria-expanded="true"] .fu-archive__plus { transform: rotate(45deg); }

.fu-archive__events {
	list-style: none;
	padding: 0 0.2rem 1rem;
}

.fu-archive__events li {
	font-size: 1rem;
	color: #d8d1c4;
	margin-bottom: 0.5rem;
}

.fu-archive__events em { display: block; color: var(--fu-muted); font-size: 0.92rem; }

.fu-archive__event-date { color: var(--fu-gold); margin-right: 0.4rem; }

.fu-archive__more { margin-top: 1.6rem; }

/* Archiv akcí – podstránka s filtry */

.fu-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.fu-filter__input,
.fu-filter__select {
	background: transparent;
	border: 1px solid var(--fu-line-soft);
	color: var(--fu-text);
	font-family: var(--sans);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	padding: 0.85rem 1.1rem;
	transition: border-color 0.25s;
}

.fu-filter__input { flex: 1 1 260px; }

.fu-filter__input::placeholder { color: var(--fu-muted); }

.fu-filter__input:focus,
.fu-filter__select:focus {
	outline: none;
	border-color: var(--fu-gold);
}

.fu-filter__select {
	cursor: pointer;
	text-transform: uppercase;
	/* mezera mezi textem a šipkou selectu */
	padding-right: 2.4rem;
}

.fu-filter__select option {
	background: var(--fu-bg-2);
	color: var(--fu-text);
}

.fu-filter__empty {
	color: var(--fu-muted);
	font-style: italic;
	margin-top: 1rem;
}

.fu-form__recaptcha { margin-bottom: 1.4rem; }

/* Filtr alb / kategorií na podstránkách Galerie a Videa */
.fu-tax-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 2.5rem;
}

.fu-tax-filter button {
	background: none;
	border: 1px solid var(--fu-line-soft);
	color: var(--fu-muted);
	font-family: var(--sans);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.7rem 1.3rem;
	cursor: pointer;
	transition: color 0.25s, border-color 0.25s;
}

.fu-tax-filter button:hover { color: var(--fu-gold-light); }

.fu-tax-filter button.is-active {
	border-color: var(--fu-gold);
	color: var(--fu-gold);
}

/* Spolupráce (kalendář CTA) */

.fu-collab {
	border: 1px solid var(--fu-line-soft);
	/* jemná záře za postavou jako v návrhu */
	background:
		radial-gradient(52% 70% at 13% 42%, rgba(96, 88, 76, 0.4), transparent 100%),
		var(--fu-bg-2);
	display: grid;
	grid-template-columns: minmax(0, 300px) 1.6fr 1fr;
	gap: 2rem;
	align-items: center;
	padding: 2rem;
	margin-bottom: 2rem;
}

/* Fotka vyplňuje levou část boxu až k okrajům, hlava přesahuje horní hranu boxu.
   Výřez má průhledné pozadí, žádná maska není potřeba. */
.fu-collab__photo {
	align-self: stretch;
	min-height: 320px;
	margin: -4rem 0 -2rem -2rem;
	overflow: hidden;
}

.fu-collab__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
	/* zrcadlově – taktovka směřuje k nadpisu jako v návrhu */
	transform: scaleX(-1);
}

.fu-collab__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: 2.5rem;
	color: var(--fu-gold-light);
	margin-bottom: 0.9rem;
}

.fu-collab__text { color: var(--fu-muted); margin-bottom: 1.6rem; }

.fu-collab__contact {
	border-left: 1px solid var(--fu-line-soft);
	padding-left: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fu-collab__contact p {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1rem;
	color: var(--fu-gold);
}

.fu-collab__contact .fu-plain-link { color: var(--fu-gold); }
.fu-collab__contact .fu-plain-link:hover { color: var(--fu-gold-light); }

.fu-collab__icon { width: 20px; color: var(--fu-gold); display: inline-flex; flex-shrink: 0; }
.fu-collab__icon svg { width: 100%; height: auto; }

/* ---------- Kontakt ---------- */

.fu-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 4rem;
	align-items: start;
}

.fu-contact__right {
	border-left: 1px solid var(--fu-line-soft);
	padding-left: 4rem;
}

.fu-contact-block {
	display: flex;
	gap: 1.4rem;
	margin-bottom: 2rem;
}

.fu-contact-block__icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid var(--fu-line);
	color: var(--fu-gold);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fu-contact-block__icon svg { width: 24px; height: 24px; }

.fu-contact-block h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.35rem;
	color: var(--fu-gold);
	margin-bottom: 0.35rem;
}

.fu-contact-block p { color: #d8d1c4; font-size: 1.02rem; }

.fu-contact__follow {
	border-top: 1px solid var(--fu-line-soft);
	padding-top: 1.6rem;
	max-width: 320px;
}

.fu-contact__follow h3 {
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.fu-contact__socials { display: flex; gap: 1rem; }

/* Formulář */

.fu-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.fu-form__field { display: block; margin-bottom: 1.2rem; }

.fu-form input[type="text"],
.fu-form input[type="email"],
.fu-form textarea {
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid var(--fu-line-soft);
	color: var(--fu-text);
	font-family: var(--serif);
	font-size: 1.02rem;
	padding: 0.9rem 1.1rem;
	transition: border-color 0.25s;
}

.fu-form input:focus,
.fu-form textarea:focus {
	outline: none;
	border-color: var(--fu-gold);
}

.fu-form ::placeholder { color: var(--fu-muted); opacity: 1; }

.fu-form textarea { resize: vertical; }

.fu-form__hp { position: absolute; left: -9999px; }

.fu-form-notice {
	font-family: var(--sans);
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	padding: 0.9rem 1.2rem;
	margin-bottom: 1.4rem;
	border: 1px solid var(--fu-line);
}

.fu-form-notice--ok { color: var(--fu-gold-light); }
.fu-form-notice--err { color: #d98a7a; border-color: rgba(217, 138, 122, 0.5); }

/* Citace */

.fu-quote {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	margin-top: 4rem;
}

.fu-quote__left {
	/* podle návrhu téměř černá (vzorkováno z PNG ~ #020202) */
	background: #020202;
	padding: 4.5rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Uvozovky + citace v jednom bloku posunutém doprava; text uvnitř zarovnaný vlevo */
.fu-quote__body {
	align-self: flex-end;
	margin-bottom: 2rem;
}

.fu-quote__mark { color: var(--fu-gold); width: 56px; margin-bottom: 0.9rem; display: block; }
.fu-quote__mark svg { width: 100%; height: auto; }

.fu-quote__text {
	border: none;
	/* plynule se zmenšuje, aby se řádky citace nelámaly v úzkém sloupci */
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
	line-height: 1.5;
	color: var(--fu-text);
}

.fu-quote__signature { font-size: 2.9rem; line-height: 1; margin-bottom: 0.8rem; text-align: right; }

.fu-quote__name {
	font-family: var(--sans);
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--fu-muted);
	text-align: right;
}

/* Fotka kopíruje výšku textového bloku – figure se jen roztahuje s řádkem gridu,
   obrázek je absolutní, takže výšku řádku neovlivňuje */
.fu-quote__photo { position: relative; }

.fu-quote__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Závěr kontaktu */

.fu-farewell {
	text-align: center;
	padding: 4.5rem 1rem 1rem;
	border-top: 1px solid var(--fu-line-soft);
	margin-top: 0;
}

.fu-quote + .fu-farewell { border-top: none; }

.fu-farewell__text {
	font-family: var(--serif);
	font-size: 1.9rem;
	letter-spacing: 0.14em;
	color: var(--fu-gold-light);
	margin-bottom: 1.6rem;
}

.fu-farewell__signature { font-size: 4rem; line-height: 1.2; }

/* ---------- Detail akce ---------- */

/* Hlavička detailu bez hero – nadpis akce přímo nad pruhem s datem a místem */
.fu-single-head { padding-top: 10rem; }

.fu-single__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: 4.2rem;
	color: var(--fu-gold-light);
	letter-spacing: 0.02em;
	line-height: 1.15;
}

.fu-single-head .fu-hero__dash { margin: 1.6rem 0 2.6rem; }

/* „Vstupenkový“ pruh pod hero: velké datum | místo | tlačítko vstupenek */
.fu-event-strip {
	display: flex;
	align-items: center;
	gap: 3rem;
	border: 1px solid var(--fu-line-soft);
	padding: 1.8rem 2.2rem;
	margin-bottom: 3.5rem;
}

.fu-event-strip__item {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	border-left: 1px solid var(--fu-line-soft);
	padding-left: 3rem;
}

.fu-event-strip__item h3 {
	font-family: var(--sans);
	font-size: 0.68rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--fu-gold);
	margin-bottom: 0.3rem;
}

.fu-event-strip__item p { color: #d8d1c4; font-size: 1.05rem; }

.fu-event-strip__icon {
	width: 22px;
	color: var(--fu-gold);
	display: inline-flex;
	flex-shrink: 0;
}

.fu-event-strip__icon svg { width: 100%; height: auto; }

.fu-event-strip__btn { margin-left: auto; }

.fu-single__prose {
	max-width: 760px;
	margin-bottom: 2.4rem;
}

.fu-single__grid {
	display: grid;
	grid-template-columns: 1fr minmax(0, 360px);
	gap: 4rem;
	align-items: start;
}

.fu-event-info {
	border: 1px solid var(--fu-line);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.fu-event-info__row {
	display: flex;
	gap: 1.1rem;
	align-items: flex-start;
}

.fu-event-info__icon {
	width: 26px;
	color: var(--fu-gold);
	flex-shrink: 0;
	display: inline-flex;
	margin-top: 0.2rem;
}

.fu-event-info__icon svg { width: 100%; height: auto; }

.fu-event-info__row h3 {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--fu-gold);
	margin-bottom: 0.35rem;
}

.fu-event-info__row p {
	font-size: 1.15rem;
	color: var(--fu-text);
}

.fu-event-info__btn { justify-content: center; }

.fu-event-info__back { color: var(--fu-muted); }
.fu-event-info__back:hover { color: var(--fu-gold-light); }

@media (max-width: 1024px) {
	.fu-single__grid { grid-template-columns: 1fr; }
}

/* ---------- Lightbox ---------- */

.fu-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
}

.fu-lightbox[hidden] { display: none; }

.fu-lightbox__content { max-width: min(1100px, 90vw); width: 100%; }

.fu-lightbox__content img {
	max-width: 100%;
	max-height: 84vh;
	width: auto;
	margin: 0 auto;
}

.fu-lightbox__content .fu-lightbox__video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.fu-lightbox__content iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.fu-lightbox__close {
	position: absolute;
	top: 1.2rem;
	right: 1.8rem;
	background: none;
	border: none;
	color: var(--fu-text);
	font-size: 2.6rem;
	cursor: pointer;
	line-height: 1;
}

.fu-lightbox__close:hover { color: var(--fu-gold-light); }

/* ---------- Responzivita ---------- */

@media (max-width: 1024px) {
	.fu-events-grid { grid-template-columns: repeat(2, 1fr); }
	.fu-reviews { grid-template-columns: 1fr; }

	.fu-cal__grid { grid-template-columns: 1fr; }

	/* tablet: pod výpisem koncertů kalendář a archiv vedle sebe */
	.fu-cal__sidebar {
		display: grid;
		grid-template-columns: minmax(0, 420px) 1fr;
		column-gap: 3rem;
		align-items: start;
	}

	.fu-cal__sidebar > .fu-section-label:first-child { grid-column: 1; grid-row: 1; }
	/* kalendář přemosťuje řádky archivu i tlačítka, aby tlačítko navazovalo hned pod měsíce */
	.fu-cal__sidebar .fu-minical { grid-column: 1; grid-row: 2 / span 2; margin-bottom: 0; }
	.fu-cal__sidebar .fu-cal__archive-title { grid-column: 2; grid-row: 1; }
	.fu-cal__sidebar .fu-archive { grid-column: 2; grid-row: 2; align-self: start; }
	.fu-cal__sidebar .fu-archive__more { grid-column: 2; grid-row: 3; justify-self: start; align-self: start; }
	.fu-collab { grid-template-columns: 1fr 1fr; }
	.fu-collab__photo { display: none; }
	.fu-bio__grid { gap: 3rem; }
}

/* Navigace se sbaluje do burgeru dřív, aby se položky vždy vešly */
@media (max-width: 1200px) {
	.fu-header__inner { grid-template-columns: auto 1fr; }

	/* tablet: nadpis skokem na menší velikost */
	.fu-hero__title { font-size: 3.2rem; }
	.fu-single__title { font-size: 3rem; }

	/* citace: fotka jako pozadí s overlay, citace blokově na středu přes ni */
	.fu-quote {
		position: relative;
		display: block;
		overflow: hidden;
	}

	.fu-quote__photo {
		position: absolute;
		inset: 0;
		height: 100%;
	}

	.fu-quote__photo::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(2, 2, 2, 0.72);
	}

	.fu-quote__left {
		position: relative;
		z-index: 2;
		background: transparent;
		align-items: center;
		padding: 4.5rem 2rem;
	}

	.fu-quote__body { align-self: center; }

	.fu-hero--home { min-height: 37rem; }
	.fu-hero--page { min-height: 33rem; }

	/* tablet: fotka jde pod text, dirigent zůstává v pravé části */
	.fu-hero__img {
		width: 64%;
		object-position: 0% 0%;
	}

	/* tablet: text v sekci O Filipovi překrývá fotku, pod textem tmavý overlay */
	.fu-about { position: relative; }

	.fu-about__grid { display: block; }

	.fu-about__photo {
		position: absolute;
		inset: 0;
		z-index: 0;
		overflow: hidden;
	}

	.fu-about__photo::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(2, 2, 2, 0.72);
	}

	/* fotka se nezvětšuje – je vidět celá postava, box obrázku kopíruje fotku,
	   takže gradienty sedí přímo na jejích okrajích */
	.fu-about__photo img {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 100%;
		width: auto;
		max-width: none;
		max-height: none;
		-webkit-mask-image:
			linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%),
			linear-gradient(to bottom, #000 0%, #000 70%, transparent 98%);
		-webkit-mask-composite: source-in;
		mask-image:
			linear-gradient(to right, transparent 0%, #000 22%, #000 78%, transparent 100%),
			linear-gradient(to bottom, #000 0%, #000 70%, transparent 98%);
		mask-composite: intersect;
	}

	.fu-about__content {
		position: relative;
		z-index: 1;
		max-width: none;
		padding: 4rem max(4vw, calc((100vw - 1180px) / 2));
	}

	.fu-header__burger {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 30;
		padding: 6px 2px;
	}

	.fu-header__burger span {
		display: block;
		width: 26px;
		height: 1.5px;
		background: var(--fu-gold);
		margin: 6px 0;
		transition: transform 0.25s, opacity 0.25s;
	}

	.fu-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
	.fu-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.fu-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

	.fu-header__nav {
		position: fixed;
		inset: 0;
		display: flex;
		background: rgba(0, 0, 0, 0.92);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.fu-header__nav.is-open {
		opacity: 1;
		visibility: visible;
	}

	.fu-nav { flex-direction: column; align-items: center; gap: 1.6rem; }
	.fu-nav a { font-size: 0.85rem; }
}

@media (max-width: 860px) {
	body { font-size: 18px; }

	/* mobil: fotka v hero přes celou šířku, dirigent vlevo, tmavý overlay pod textem */
	.fu-hero__img {
		width: 100%;
		object-position: 30% 0%;
	}

	.fu-hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(2, 2, 2, 0.55);
		z-index: 1;
	}

	/* mobil: galerie a videa jako carousel – obsahuje všechny položky,
	   tlačítka „Zobrazit vše“ / „Všechna videa“ tu proto nejsou potřeba */
	#galerie .fu-gallery {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 14px;
		scrollbar-width: none;
	}

	#galerie .fu-gallery::-webkit-scrollbar { display: none; }

	#galerie .fu-gallery > .fu-gallery__item {
		flex: 0 0 100%;
		scroll-snap-align: start;
		aspect-ratio: 1 / 1;
	}

	#videa .fu-videos {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 32px;
		scrollbar-width: none;
	}

	#videa .fu-videos::-webkit-scrollbar { display: none; }

	#videa .fu-videos > .fu-video-card {
		flex: 0 0 100%;
		scroll-snap-align: start;
	}

	#recenze .fu-reviews {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 2rem;
		scrollbar-width: none;
	}

	#recenze .fu-reviews::-webkit-scrollbar { display: none; }

	#recenze .fu-reviews > .fu-review {
		flex: 0 0 100%;
		scroll-snap-align: start;
	}


	.fu-carousel-controls {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1.4rem;
		margin-top: 1.4rem;
	}

	/* mobil: kalendář a archiv pod sebou */
	.fu-cal__sidebar { display: block; }
	.fu-cal__sidebar .fu-minical { margin-bottom: 3rem; }

	/* mobil: nadpis sekce na střed, odkaz „Zobrazit vše“ apod. až na konec sekce na střed */
	.fu-section-head { display: contents; }

	section .fu-container:has(.fu-section-head) {
		display: flex;
		flex-direction: column;
	}

	.fu-section-head .fu-section-label {
		order: 0;
		text-align: center;
		margin-bottom: 1.8rem;
	}

	.fu-section-head .fu-textlink {
		order: 10;
		align-self: center;
		margin-top: 2.2rem;
		font-size: 0.7rem;
	}

	/* mobil: přepínač jazyka se přesouvá do menu */
	.fu-header__right .fu-header__lang { display: none; }
	.fu-header__nav .fu-header__lang--menu { display: block; font-size: 0.85rem; }

	/* mobil: texty úvodní sekce a sekce O Filipovi na střed */
	.fu-hero__inner { text-align: center; }
	.fu-hero__dash { margin-left: auto; margin-right: auto; }
	.fu-hero__text,
	.fu-hero__subtitle { margin-left: auto; margin-right: auto; }
	.fu-about__content { text-align: center; }

	.fu-hero--home { min-height: 33rem; }
	.fu-hero--page { min-height: 27rem; }

	.fu-hero--home .fu-hero__inner { padding: 7rem 0 4rem; }
	.fu-hero--page .fu-hero__inner { padding: 7rem 0 3.5rem; }


	.fu-about__grid,
	.fu-bio__grid,
	.fu-bio__grid--photo,
	.fu-bio__grid--intro,
	.fu-contact__grid { grid-template-columns: 1fr; }

	.fu-contact__right { border-left: none; padding-left: 0; }

	.fu-videos { grid-template-columns: 1fr; }
	.fu-events-grid { grid-template-columns: 1fr; }
	.fu-form__row { grid-template-columns: 1fr; }

	.fu-footer__grid { grid-template-columns: 1fr; text-align: center; }
	.fu-footer__monogram { text-align: center; }
	.fu-footer .fu-section-label { text-align: center; }

	.fu-collab { grid-template-columns: 1fr; }
	.fu-collab__contact { border-left: none; padding-left: 0; border-top: 1px solid var(--fu-line-soft); padding-top: 1.6rem; }

	.fu-cta-box { flex-direction: column; text-align: center; }

	.fu-quote__left { padding: 3rem 1.8rem; }
}

/* ---------- Malé mobily ---------- */

@media (max-width: 600px) {
	.fu-section-label {
		font-size: 1.25rem;
		letter-spacing: 0.3em;
	}

	.fu-hero__title { font-size: 2.7rem; }
	.fu-single__title { font-size: 2.4rem; }


	.fu-event-card__day { font-size: 2.4rem; }

	.fu-footer__monogram { font-size: 6rem; }

	.fu-cal-row {
		flex-wrap: wrap;
		gap: 1rem;
		padding: 1.2rem 1.3rem;
	}

	/* nadpis akce vždy pod datem – jednotné zalomení pro všechny řádky */
	.fu-cal-row__info { flex: 1 0 100%; }

	/* drobnější stránkování – vejde se víc čísel na řádek */
	.fu-cal-pager,
	.fu-cal-pager__nums { gap: 0.35rem; }
	.fu-cal-pager__num { width: 30px; height: 30px; font-size: 0.75rem; }
	.fu-cal-pager .fu-carousel-arrow { width: 32px; height: 32px; }

	/* detail akce: pruh pod sebou */
	.fu-event-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		padding: 1.5rem 1.4rem;
	}

	.fu-event-strip__item { border-left: none; padding-left: 0; }
	.fu-event-strip__btn { margin-left: 0; }

	.fu-cal-row__arrow { display: none; }
}
